Release Lab::Measurement 3.930 #334
Workflow file for this run
This file contains hidden or 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: test | |
on: [push, pull_request] | |
jobs: | |
'prove-lrt': | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
perl: ['5.24', '5.28', '5.32', '5.36', '5.38', '5.40'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- uses: shogo82148/actions-setup-perl@v1 | |
with: | |
perl-version: ${{matrix.perl}} | |
- run: lsb_release -a | |
# for png terminal of gnuplot | |
- run: sudo apt-get update | |
- run: sudo apt-get install gnuplot-nox | |
# run test in script to avoid tedious quoting of bash code | |
- name: prove-test | |
run: ./.github/scripts/prove-test.bash | |
shell: bash | |
env: | |
gp_version: 5.2.4 | |
with_pdl_graphics_gnuplot: 1 | |