Use v1 of vmactions/freebsd-vm #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FreeBSD | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
perl-job: | |
runs-on: macos-10.15 | |
name: FreeBSD Perl ${{matrix.perl}} | |
strategy: | |
fail-fast: false | |
matrix: | |
perl: [ '5.32' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test in FreeBSD | |
id: test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
prepare: pkg install -y lang/perl${{matrix.perl}} p5-App-cpanminus | |
run: | | |
freebsd-version | |
perl -V | |
cpanm --installdeps -v -n --mirror http://cpan.cpantesters.org/ . | |
cpanm -v --test-only . |