Skip to content

Commit 77ed845

Browse files
committed
Oops, forgot to update CI runners
1 parent 6c63027 commit 77ed845

File tree

3 files changed

+60
-8
lines changed

3 files changed

+60
-8
lines changed

.github/workflows/linux.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Linux
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- ubuntu-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Install Dependencies
26+
run: zef install --/test --test-depends --deps-only .
27+
- name: Run Special Tests
28+
run: raku run-tests -i

.github/workflows/macos.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: MacOS
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
tags-ignore:
8+
- '*'
9+
pull_request:
10+
11+
jobs:
12+
raku:
13+
strategy:
14+
matrix:
15+
os:
16+
- macos-latest
17+
raku-version:
18+
- 'latest'
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v3
22+
- uses: Raku/setup-raku@v1
23+
with:
24+
raku-version: ${{ matrix.raku-version }}
25+
- name: Install Dependencies
26+
run: zef install --/test --test-depends --deps-only .
27+
- name: Run Special Tests
28+
run: raku run-tests -i
Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: test
1+
name: Windows
22

33
on:
44
push:
@@ -13,20 +13,16 @@ jobs:
1313
strategy:
1414
matrix:
1515
os:
16-
- ubuntu-latest
17-
- macos-latest
1816
- windows-latest
1917
raku-version:
2018
- 'latest'
2119
runs-on: ${{ matrix.os }}
2220
steps:
23-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2422
- uses: Raku/setup-raku@v1
2523
with:
2624
raku-version: ${{ matrix.raku-version }}
2725
- name: Install Dependencies
2826
run: zef install --/test --test-depends --deps-only .
29-
- name: Install App::Prove6
30-
run: zef install --/test App::Prove6
31-
- name: Run Tests
32-
run: prove6 -I. t
27+
- name: Run Special Tests
28+
run: raku run-tests -i

0 commit comments

Comments
 (0)