Create make workflow

make clean; make; make test
This commit is contained in:
Adrian Schlatter 2023-04-08 12:51:57 +02:00 committed by GitHub
parent bad6cbea2e
commit 298a0681ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

21
.github/workflows/make.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: make
on:
pull_request:
jobs:
make_test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Clean up
run: make clean
- name: Build
run: make
- name: Run tests
run: make test