Add CI to build and test on Linux

This commit is contained in:
flawedworld 2021-02-16 16:54:37 +00:00
parent 1984cb3b3d
commit 736310da5d

21
.github/workflows/build-test-linux.yml vendored Normal file
View file

@ -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