Move to actions/checkout@v4 to silence GHW nags #42
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: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
raku: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
# - macOS-latest | |
# - windows-latest | |
raku-version: | |
- 'latest' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Raku/setup-raku@v1 | |
with: | |
raku-version: ${{ matrix.raku-version }} | |
- name: Update Zef Indices | |
run: zef update | |
- name: Install HEAD MUGS-Core | |
run: zef install --/test https://github.com/Raku-MUGS/MUGS-Core/archive/main.zip | |
- name: Install Dependencies | |
run: zef install --/test --test-depends --deps-only . | |
- name: Install App::Prove6 | |
run: zef install --/test App::Prove6 | |
- name: Run Tests | |
run: prove6 -l -v t |