-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (41 loc) · 1.08 KB
/
macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Math::BigInt::GMP is currently not installable on the github actions mac
# environment, so no matter what this
# test will fail.
# common ci conf 2021-09-11
name: MacOS
# Controls when the action will run.
on:
push:
branches: [ master, stv, btr, development ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
perl_tester:
runs-on: macos-latest
name: "macos perl v${{ matrix.perl }}"
strategy:
fail-fast: false
matrix:
perl:
- "5.40"
- "5.38"
- "5.36"
- "5.24"
steps:
- uses: actions/checkout@v4
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- name: Dependencies install-with-cpm
continue-on-error: true
uses: perl-actions/install-with-cpm@stable
with:
cpanfile: "cpanfile"
sudo: false
- name: Run Tests
run: |
export MACARM=true; prove -lv t/*.t