Skip to content

Instantly share code, notes, and snippets.

@JJ
Last active December 23, 2021 07:18
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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