summaryrefslogtreecommitdiff
path: root/.github/workflows/build_mac.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build_mac.yml')
-rw-r--r--.github/workflows/build_mac.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml
new file mode 100644
index 0000000..2d9e7f0
--- /dev/null
+++ b/.github/workflows/build_mac.yml
@@ -0,0 +1,24 @@
+name: build_mac
+
+on:
+ push:
+ branches:
+ - '*'
+ tags-ignore:
+ - '*'
+ pull_request:
+
+jobs:
+ perl:
+ runs-on: macOS-latest
+
+ steps:
+ - uses: actions/checkout@master
+ - name: perl -V
+ run: perl -V
+ - name: Install dependencies with develop
+ run: curl -sL https://git.io/cpm | perl - install -g --with-recommends --with-test --with-configure --with-develop --show-build-log-on-failure
+ - name: Run Makefile.PL
+ run: perl Makefile.PL
+ - name: Run tests
+ run: make && make test