Add intro for arrays concept #779
Workflow file for this run
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: Exercises | |
on: | |
- push | |
- pull_request | |
jobs: | |
job: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | |
name: Rakudo Star on ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rakudo Star with choco | |
if: runner.os == 'Windows' | |
run: > | |
choco install rakudostar; | |
echo "C:\rakudo\bin;C:\rakudo\share\perl6\site\bin" | |
| Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: Install Rakudo Star with brew | |
if: runner.os == 'macOS' | |
run: brew install rakudo-star | |
- name: Rakudo Star tests with prove6 | |
if: runner.os != 'Linux' | |
run: prove6 --jobs 2 (Get-Item -Path exercises/practice/*/.meta/solutions/) | |
shell: pwsh | |
- name: Rakudo Star tests with docker run | |
if: runner.os == 'Linux' | |
uses: docker://rakudo-star:latest | |
with: | |
args: /bin/bash -c "prove6 --jobs 2 /github/workspace/exercises/practice/*/.meta/solutions/" |