Skip to content

_Really_ closes #99

_Really_ closes #99 #3

Workflow file for this run

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 .