diff options
author | Pierre Ossman <ossman@cendio.se> | 2021-06-07 17:07:50 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2021-06-07 17:07:50 +0200 |
commit | a616f0938ab2e1271882de50d7ae8eac6b0edeba (patch) | |
tree | 840353dd491ae529be79938af7fe67da200103a7 /.github | |
parent | ba837fd283adbf462137be97ed6a1970a6c37b67 (diff) | |
download | tigervnc-a616f0938ab2e1271882de50d7ae8eac6b0edeba.tar.gz tigervnc-a616f0938ab2e1271882de50d7ae8eac6b0edeba.zip |
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.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 9 insertions, 0 deletions
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 |