summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorWolfgang Hommel <wolfgang.hommel@unibw.de>2020-04-09 06:41:10 +0200
committerWolfgang Hommel <wolfgang.hommel@unibw.de>2020-04-09 06:41:10 +0200
commit690ed3f1588df3ad56af4002bed94fdefb10da28 (patch)
tree5fc68504c19bd15ea04594ab58f8d900dde44d3c /.github
parentd2f0daf0921e1e3cb8efec722dea67c22444a963 (diff)
downloadlibfaketime-690ed3f1588df3ad56af4002bed94fdefb10da28.tar.gz
github action for automake branch
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/make-autotest.yml24
1 files changed, 24 insertions, 0 deletions
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