Update the instructions for the CSV file of year 2025 #10
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: Test | |
on: push | |
jobs: | |
yath: | |
strategy: | |
matrix: | |
container: [ "perl:5.36", "perl:5.34", "perl:5.32", "perl:5.30" ] | |
container: | |
image: ${{ matrix.container }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: apt update | |
- run: apt install libmpfr-dev | |
- run: cpanm --quiet --notest --installdeps . | |
- run: yath test --qvf t/ |