sowm: Test patches in CI.

This commit is contained in:
Dylan Araps 2019-11-25 14:35:50 +00:00
parent 1fb75817aa
commit 51a96547ef
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
2 changed files with 12 additions and 0 deletions

9
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,9 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Apply patches.
run: make test

View File

@ -19,3 +19,6 @@ install: all
clean:
rm -f sowm *.o
test:
for patch in patches/*.patch; do patch -p1 < "$patch"; done