aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorcacharle <me@cacharle.xyz>2020-10-09 14:19:35 +0200
committerGitHub <noreply@github.com>2020-10-09 14:19:35 +0200
commite6ff1bcac20dd0a596ca7d0be4f2c35925c2944c (patch)
treee92ce132add198884f33eb17692b0a6ad9652592 /.github
parent2a8056e885151fa155bf82a3d8cc97b0905ea577 (diff)
downloadminishell-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.yml19
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