Skip to content

Minor: documentation update #70

Minor: documentation update

Minor: documentation update #70

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "v0.1" ]
pull_request:
branches: [ "main", "v0.1" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# matrix setup for multiple versions and OSs
# License: MIT
jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
rakudo-version:
- "latest"
- "2021.12"
- "2020.12"
exclude:
- os: windows-latest
rakudo-version: "2021.12"
- os: windows-latest
rakudo-version: "2020.12"
fail-fast: false
uses: vrurg/raku-build-tools/.github/workflows/default-test-workflow.yml@workflow-v1
with:
os: ${{ matrix.os }}
rakudo-version: ${{ matrix.rakudo-version }}