add source-url configuration to dist.ini (#181) #178
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 # disabled for now | |
raku-version: | |
- 'latest' | |
- '2023.02' # fez uses "rakuast" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Raku/setup-raku@v1 | |
with: | |
raku-version: ${{ matrix.raku-version }} | |
- name: Upgrade zef | |
run: zef upgrade --/test zef | |
- name: Install Dependencies | |
run: zef install --/test --deps-only . | |
- name: Install Development Dependencies | |
run: zef install --/test App::Prove6 File::Temp Distribution::Builder::MakeFromJSON | |
- name: Run Tests | |
run: prove6 -I. t xt |