diff options
-rw-r--r-- | .github/workflows/ccpp.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 0000000..6e2e48c --- /dev/null +++ b/.github/workflows/ccpp.yml | |||
@@ -0,0 +1,13 @@ | |||
1 | name: C/C++ CI | ||
2 | |||
3 | on: [push] | ||
4 | |||
5 | jobs: | ||
6 | build: | ||
7 | |||
8 | runs-on: ubuntu-latest | ||
9 | |||
10 | steps: | ||
11 | - uses: actions/checkout@v1 | ||
12 | - name: Test | ||
13 | run: make test | ||