]> granicus.if.org Git - curl/commitdiff
CI: inintial github action job
authorDaniel Stenberg <daniel@haxx.se>
Sat, 14 Sep 2019 18:25:43 +0000 (20:25 +0200)
committerGitHub <noreply@github.com>
Sat, 14 Sep 2019 18:25:43 +0000 (20:25 +0200)
First shot at a CI build on github actions

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

diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml
new file mode 100644 (file)
index 0000000..9f3b87e
--- /dev/null
@@ -0,0 +1,17 @@
+name: Build on Ubuntu with default options
+
+on: [push]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+    
+    steps:
+    - uses: actions/checkout@v1
+    - name: configure
+      run: ./buildconf && ./configure
+    - name: make
+      run: make
+    - name: make check
+      run: make check