Add github CI action for ubuntu

This commit is contained in:
Erik Ekman 2021-08-11 09:35:05 +02:00 committed by GitHub
parent 1684aa3806
commit aa5819fe35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,21 @@
name: ubuntu
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: make
- name: install check
run: sudo apt install check
- name: run tests
run: make check