summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorWolfgang Hommel <wolfcw@users.noreply.github.com>2019-11-30 09:16:43 +0100
committerGitHub <noreply@github.com>2019-11-30 09:16:43 +0100
commit11fbc2ada1dc3d7d90d600071174ae181cedaa27 (patch)
treed8d4f1cb4e3a002dcdb1055f6509b9482e3e8248 /.github
parent22f8c3dd36d0cd905e2ad60a00a554941419a51b (diff)
downloadlibfaketime-11fbc2ada1dc3d7d90d600071174ae181cedaa27.tar.gz
Create make-test.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/make-test.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/make-test.yml b/.github/workflows/make-test.yml
new file mode 100644
index 0000000..a464d2b
--- /dev/null
+++ b/.github/workflows/make-test.yml
@@ -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