From e6ff1bcac20dd0a596ca7d0be4f2c35925c2944c Mon Sep 17 00:00:00 2001 From: cacharle Date: Fri, 9 Oct 2020 14:19:35 +0200 Subject: Create c-cpp.yml --- .github/workflows/c-cpp.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/c-cpp.yml (limited to '.github') 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 -- cgit