From: Pierre Ossman Date: Mon, 7 Jun 2021 15:07:50 +0000 (+0200) Subject: Boot strap github actions X-Git-Tag: v1.11.90~41 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a616f0938ab2e1271882de50d7ae8eac6b0edeba;p=tigervnc.git Boot strap github actions A initial workflow needs to be defined for actions to trigger on pull requests, so just add a minimal, dummy one. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..7979e529 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,9 @@ +name: Build + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2