0.3.11 #48
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: Windows | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
raku: | |
strategy: | |
matrix: | |
os: | |
- windows-latest | |
raku-version: | |
- 'latest' | |
runs-on: ${{ matrix.os }} | |
env: | |
# Workaround for path length errors during precompilation of longer repo names | |
TMPDIR: /tmp | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Raku/setup-raku@v1 | |
with: | |
raku-version: ${{ matrix.raku-version }} | |
- name: Ensure TMPDIR exists | |
run: mkdir -p ${{ env.TMPDIR }} | |
- name: Install JSON::Fast | |
run: zef install JSON::Fast --/test | |
- name: Install Dependencies | |
run: zef install --/test --test-depends --deps-only . | |
- name: Run Special Tests | |
run: raku run-tests -i |