Skip to content

Commit

Permalink
Adds new testing rig
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ committed Jan 9, 2022
1 parent f430d8c commit 5a42726
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yaml
@@ -0,0 +1,21 @@
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: Cache installed dists
uses: actions/cache@v2
id: meta6
with:
path: ~/.raku/
key: ${{ runner.os }}-${{ hashFiles('META6.json') }}
- name: Test and install for more tests
run: |
zef install .

0 comments on commit 5a42726

Please sign in to comment.