Last active
December 23, 2021 07:18
-
-
Save JJ/67c671da445617b1347bd00dd8edfc66 to your computer and use it in GitHub Desktop.
Github Action for testing Raku modules
This file contains hidden or 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 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