Skip to content

Commit

Permalink
#99 forgot this
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed Mar 11, 2024
1 parent e8e8390 commit e003354
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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 .

0 comments on commit e003354

Please sign in to comment.