summaryrefslogtreecommitdiffstats
path: root/.github/workflows/MacOS.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/MacOS.yml')
-rw-r--r--.github/workflows/MacOS.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/MacOS.yml b/.github/workflows/MacOS.yml
new file mode 100644
index 00000000..5e118ee7
--- /dev/null
+++ b/.github/workflows/MacOS.yml
@@ -0,0 +1,37 @@
+name: MacOS
+on:
+ push:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/MacOS.yml'
+ pull_request:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/MacOS.yml'
+
+
+
+jobs:
+ NetBSD:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v2
+ - run: |
+ brew install automake
+ autoupdate
+ ./autogen.sh
+ ./configure
+ make
+ make install
+
+
+
+