Skip to content

Instantly share code, notes, and snippets.

@JJ
Last active December 23, 2021 07:18
Show Gist options
  • Save JJ/67c671da445617b1347bd00dd8edfc66 to your computer and use it in GitHub Desktop.
Save JJ/67c671da445617b1347bd00dd8edfc66 to your computer and use it in GitHub Desktop.
Github Action for testing Raku modules
name: "Test in a Raku container"
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
permissions:
packages: read
container:
image: ghcr.io/jj/raku-zef-gha
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install modules
run: zef install .
- name: Test
run: zef --debug test .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment