_Really_ closes #99 #3
This file contains 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@v4 | |
- name: Cache installed dists | |
uses: actions/cache@v4 | |
id: meta6 | |
with: | |
path: ~/.raku/ | |
key: ${{ runner.os }}-${{ hashFiles('META6.json') }} | |
- name: Install modules | |
if: steps.meta6.outputs.cache-hit != 'true' | |
run: zef install . | |
- name: Test | |
run: zef --debug test . |