Forráskód Böngészése

create ccpp.yml

Add automatic test for github
Jan Klemkow 6 éve
szülő
commit
0d39929e48
1 módosított fájl, 17 hozzáadás és 0 törlés
  1. 17 0
      .github/workflows/ccpp.yml

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

@@ -0,0 +1,17 @@
+name: C/C++ CI
+
+on: [push]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+    
+    steps:
+    - uses: actions/checkout@v2
+    - name: make
+      run: make
+    - name: make test
+      run: make test
+    - name: make clean
+      run: make clean