Răsfoiți Sursa

Add github action

Run make on ubuntu latest
amai2012 5 ani în urmă
părinte
comite
e120ee328e
1 a modificat fișierele cu 21 adăugiri și 0 ștergeri
  1. 21 0
      .github/workflows/ccpp.yml

+ 21 - 0
.github/workflows/ccpp.yml

@@ -0,0 +1,21 @@
+name: C/C++ CI
+
+on:
+  push:
+    branches: [ master ]
+  pull_request:
+    branches: [ master ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v2
+    - name: make
+      run: make
+    - name: make check
+      run: make check
+    - name: make distcheck
+      run: make distcheck