We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68f071f commit 3460443Copy full SHA for 3460443
.github/workflows/linux.yml
@@ -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