-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (36 loc) · 987 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: test
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
# - macOS-latest
# - windows-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: Update Zef Indices
run: zef update
- name: Install HEAD MUGS-Core
run: zef install --/test https://github.com/Raku-MUGS/MUGS-Core/archive/main.zip
- name: Install HEAD MUGS-Games
run: zef install --/test https://github.com/Raku-MUGS/MUGS-Games/archive/main.zip
- name: Install Dependencies
run: zef install --/test --test-depends --deps-only .
- name: Install App::Prove6
run: zef install --/test App::Prove6
- name: Run Tests
run: prove6 -l -v t