From 690ed3f1588df3ad56af4002bed94fdefb10da28 Mon Sep 17 00:00:00 2001 From: Wolfgang Hommel Date: Thu, 9 Apr 2020 06:41:10 +0200 Subject: [PATCH] github action for automake branch --- .github/workflows/make-autotest.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/make-autotest.yml diff --git a/.github/workflows/make-autotest.yml b/.github/workflows/make-autotest.yml new file mode 100644 index 0000000..9d252cc --- /dev/null +++ b/.github/workflows/make-autotest.yml @@ -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