Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrueda committed Nov 23, 2023
1 parent 56d9bb6 commit 004b2ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-2019']
os: ['windows-2019','windows-latest']
perl: ['5.34']
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install MinGW (GCC)
run: choco install mingw -y
- name: Run tests (no coverage)
# run: choco install mingw -y
# - name: Run tests (no coverage)
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm --force --n --installdeps .
- run: cpanm -n --installdeps .
- run: perl t/args.t
- run: perl t/cli.t
- run: prove -l t
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
#os: ['windows-latest']
os: ['ubuntu-latest', 'macos-latest']
#os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
#os: ['ubuntu-latest', 'macos-latest']
os: ['ubuntu-latest', 'macos-latest', 'windows-2019']
perl: ['5.34', '5.32', '5.30', '5.28', '5.26']
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 004b2ad

Please sign in to comment.