From 1078409875cacc5626a3961e08cf67c68049d22a Mon Sep 17 00:00:00 2001 From: van Hauser Date: Mon, 21 Dec 2020 12:06:06 +0100 Subject: Create ci.yml --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..1f7d23f4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ stable, dev ] + pull_request: + branches: [ stable, dev ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: make tests + run: make tests -- cgit 1.4.1