blob: dd9d972c8cb069ba8189fd44baddec0a78e6844a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
stages:
- test
prove:
stage: test
only:
- master
image: rakudo-star
before_script:
- zef install . --deps-only
- zef install .
script: AUTHOR_TESTING=1 prove -v -e "perl6 -Ilib" t
|