From 16135147b00c0adddee045ae06e8153af195f0bc Mon Sep 17 00:00:00 2001 From: skramm Date: Tue, 27 Jun 2023 22:53:55 +0200 Subject: [PATCH] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..64c096e --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,21 @@ +name: C/C++ CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: make1 + run: make + - name: clean + run: make clean + - name: make2 + run: make CXX=clang++