-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (39 loc) · 898 Bytes
/
windows.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
39
40
41
42
43
44
45
46
47
48
49
name: Windows
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
workflow_dispatch:
jobs:
raku:
strategy:
matrix:
os:
- 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: raku -v
run: |
raku -v
- name: raku -V
run: |
raku -V
- name: Install Dependencies
run: |
# zef install --/test --deps-only --build-depends --test-depends .
zef install --/test -v https://github.com/Altai-man/perl6-Compress-Bzip2-Raw.git
- name: Run Tests
run: |
zef test --debug .
- name: Install
run: |
zef install --/test --debug .