Skip to content

Commit

Permalink
no coverage on mac 5.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Mar 11, 2022
1 parent 33c46bd commit 9e965ff
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/all.yaml
Expand Up @@ -164,11 +164,9 @@ jobs:
- '12.2'
- '13.0'
- name: openbsd
version: '6.9'
pkginstall: pkg_add icu4c p5-ExtUtils-PkgConfig curl
# - name: netbsd
# version: '9.2'
# pkginstall: pkg_add libunbound
version:
- '6.9'

steps:
- uses: actions/checkout@v3
Expand All @@ -194,14 +192,14 @@ jobs:
strategy:
fail-fast: false
matrix:
perlversion:
perl-version:
- ''
- '5.18'

steps:
- uses: actions/checkout@v3
- name: Set up Perl
run: brew install perl${{ matrix.perlversion && '@' || '' }}${{ matrix.perlversion }}
run: brew install perl${{ matrix.perl-version && '@' || '' }}${{ matrix.perl-version }}
- name: perl -V
run: perl -V
- name: Install Dependencies
Expand All @@ -212,7 +210,11 @@ jobs:
PKG_CONFIG_PATH: /usr/local/opt/icu4c/lib/pkgconfig
- name: make
run: make
- name: Run tests (no coverage)
if: ${{ matrix.perl-version }}
run: prove -wlvmb t
- name: Run tests (with coverage)
if: ${{ !matrix.perl-version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down

0 comments on commit 9e965ff

Please sign in to comment.