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.
2 parents 894e76d + 9c5818e commit 37f7209Copy full SHA for 37f7209
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: CI
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
+ - macOS-latest
18
+ - windows-latest
19
+ raku-version:
20
+ - "2021.03"
21
+ - "latest"
22
+ runs-on: ${{ matrix.os }}
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - uses: Raku/setup-raku@v1
26
+ with:
27
+ raku-version: ${{ matrix.raku-version }}
28
+ - name: Setup dependencies
29
+ run: raku -v && zef install --deps-only .
30
+ - name: Test code
31
+ run: zef test .
.travis.yml
0 commit comments