]> source.dussan.org Git - tigervnc.git/commitdiff
Boot strap github actions
authorPierre Ossman <ossman@cendio.se>
Mon, 7 Jun 2021 15:07:50 +0000 (17:07 +0200)
committerPierre Ossman <ossman@cendio.se>
Mon, 7 Jun 2021 15:07:50 +0000 (17:07 +0200)
A initial workflow needs to be defined for actions to trigger on pull
requests, so just add a minimal, dummy one.

.github/workflows/build.yml [new file with mode: 0644]

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644 (file)
index 0000000..7979e52
--- /dev/null
@@ -0,0 +1,9 @@
+name: Build
+
+on: [push, pull_request]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2