Skip to content

Commit

Permalink
Switch from Cirrus to Github Actions for MacOS testing
Browse files Browse the repository at this point in the history
  • Loading branch information
DrHyde committed Feb 15, 2023
1 parent 1bac529 commit 508f498
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .cirrus.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: [push, pull_request]
name: MacOS

jobs:
build:
strategy:
fail-fast: false
matrix:
runs-on: ['macos-10.15', 'macos-11', 'macos-12']
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
- name: Setup Perl environment
uses: shogo82148/actions-setup-perl@v1
- name: Test and build
run: |
cpanm --installdeps .
perl Makefile.PL
make test

0 comments on commit 508f498

Please sign in to comment.