diff options
author | Li Jin <dragon-fly@qq.com> | 2020-01-12 22:37:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 22:37:59 +0800 |
commit | 5552e85efca963b69fda6a8aa5fd6428ad8884a6 (patch) | |
tree | 6d90ca05ddc2ee10721ae81ffed2c39ff6f4f4c1 | |
parent | e0c3e47fa089ba717b5857cef3a67fd27cd3aa4c (diff) | |
download | yuescript-5552e85efca963b69fda6a8aa5fd6428ad8884a6.tar.gz yuescript-5552e85efca963b69fda6a8aa5fd6428ad8884a6.tar.bz2 yuescript-5552e85efca963b69fda6a8aa5fd6428ad8884a6.zip |
Create ccpp.yml
-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 | ||