From cedaf5890a2e2fcff5292870d49b9df3bbea1d73 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife Date: Thu, 11 May 2023 21:40:12 +0100 Subject: [PATCH] Create c.yml --- .github/workflows/c.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/c.yml diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml new file mode 100644 index 0000000..b45f348 --- /dev/null +++ b/.github/workflows/c.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: make test + run: make test + - name: make stress + run: make stress