From 736310da5d12dc5b90742e81d2fbd95d22278389 Mon Sep 17 00:00:00 2001 From: flawedworld <38294951+flawedworld@users.noreply.github.com> Date: Tue, 16 Feb 2021 16:54:37 +0000 Subject: [PATCH] Add CI to build and test on Linux --- .github/workflows/build-test-linux.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build-test-linux.yml diff --git a/.github/workflows/build-test-linux.yml b/.github/workflows/build-test-linux.yml new file mode 100644 index 0000000..13f11ca --- /dev/null +++ b/.github/workflows/build-test-linux.yml @@ -0,0 +1,21 @@ +name: Build and test on Linux + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build_and_test: + + runs-on: ubuntu-20.04 + + steps: + - uses: actions/checkout@v2 + + - name: Build + run: make + + - name: Test + run: make test