summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2021-05-12 23:16:23 +0200
committerMichael Adam <obnox@samba.org>2021-05-13 01:38:10 +0200
commit2db9a2a00fa22525c4d6850bd3f157ddc16d9ba0 (patch)
treea8a1afe3a87de5a0ad48cfde4bb107418fc658d6
parent132a55cefbff018dab38a56e9e14569e3310fca1 (diff)
github actions: add macos tests
Signed-off-by: Michael Adam <obnox@samba.org>
-rw-r--r--.github/workflows/main.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 8f4a7f0..3be05e2 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -15,6 +15,15 @@ jobs:
- run: ./configure
- run: make
- run: make test
+ test-macos:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v2
+ - run: brew install automake
+ - run: ./autogen.sh
+ - run: ./configure
+ - run: make
+ - run: make test
valgrind-test:
runs-on: ubuntu-latest
steps: