github action for automake branch

This commit is contained in:
Wolfgang Hommel
2020-04-09 06:41:10 +02:00
parent d2f0daf092
commit 690ed3f158

24
.github/workflows/make-autotest.yml vendored Normal file
View File

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