This commit is contained in:
Ole Morud
2023-04-28 17:50:35 +02:00
committed by olemorud
parent 2f632baa26
commit 0937f01780

23
.github/workflows/build-and-test.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Build and test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make (BUILD=debug)
run: make
- name: make (BUILD=release)
run: make BUILD=release
- name: Run tests
run: ./test.sh