Create ci.yml

This commit is contained in:
Wouter Wijngaards 2021-06-23 10:23:23 +02:00 committed by GitHub
parent 896357a5b3
commit 4de4a0ffb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: ./configure --enable-debug
- name: make
run: make
- name: make test
run: make test