Skip to content

Commit 3460443

Browse files
authored
Create linux.yml
1 parent 68f071f commit 3460443

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/linux.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: linux
2+
3+
on:
4+
- push
5+
6+
jobs:
7+
perl6:
8+
9+
runs-on: ubuntu-latest
10+
11+
strategy:
12+
matrix:
13+
rakudo-star-version:
14+
- 'latest'
15+
16+
container:
17+
image: rakudo-star:${{ matrix.rakudo-star-version }}
18+
19+
steps:
20+
- uses: actions/checkout@v1
21+
- name: perl6 -v
22+
run: perl6 -v
23+
- name: Install Dependencies
24+
run: zef install --deps-only --/test .
25+
- name: Run Tests
26+
run: PERL6LIB=$PWD/lib prove -e perl6 -vr t

0 commit comments

Comments
 (0)