Create make-test.yml

This commit is contained in:
Wolfgang Hommel
2019-11-30 09:16:43 +01:00
committed by GitHub
parent 22f8c3dd36
commit 11fbc2ada1

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

@@ -0,0 +1,23 @@
name: Run make test
on:
push:
branches:
- master
- develop
schedule:
- cron: '30 9 * * *'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: make
run: make
- name: make test
run: make test