diff options
| author | cacharle <me@cacharle.xyz> | 2020-10-09 14:19:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-09 14:19:35 +0200 |
| commit | e6ff1bcac20dd0a596ca7d0be4f2c35925c2944c (patch) | |
| tree | e92ce132add198884f33eb17692b0a6ad9652592 /.github | |
| parent | 2a8056e885151fa155bf82a3d8cc97b0905ea577 (diff) | |
| download | minishell-e6ff1bcac20dd0a596ca7d0be4f2c35925c2944c.tar.gz minishell-e6ff1bcac20dd0a596ca7d0be4f2c35925c2944c.tar.bz2 minishell-e6ff1bcac20dd0a596ca7d0be4f2c35925c2944c.zip | |
Create c-cpp.yml
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/c-cpp.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..5d7bcc2 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,19 @@ +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: test + run: ./minishell_test/run |
