Skip to content

Instantly share code, notes, and snippets.

@ugexe
Created October 2, 2023 23:23
Show Gist options
  • Save ugexe/8d80f80e295555b336d90bc295768476 to your computer and use it in GitHub Desktop.
Save ugexe/8d80f80e295555b336d90bc295768476 to your computer and use it in GitHub Desktop.
jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
raku-version:
- "latest"
- "2023.08"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Run tests and Install
run: zef install . --debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment