Update github actions #16
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
raku: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
raku-version: | |
- 'latest' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Raku/setup-raku@v1 | |
with: | |
raku-version: ${{ matrix.raku-version }} | |
- name: Clone Pakku | |
run: git clone https://github.com/hythm7/Pakku.git /tmp/Pakku | |
- name: Install Pakku | |
run: raku -I/tmp/Pakku ./tmp/Pakku/bin/pakku nobar nospinner verbose all add /tmp/Pakku | |
- name: Install Module | |
run: pakku nobar nospinner verbose all add . |