Skip to content

Commit

Permalink
Create linux.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
FCO authored Oct 6, 2019
1 parent 68f071f commit 3460443
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: linux

on:
- push

jobs:
perl6:

runs-on: ubuntu-latest

strategy:
matrix:
rakudo-star-version:
- 'latest'

container:
image: rakudo-star:${{ matrix.rakudo-star-version }}

steps:
- uses: actions/checkout@v1
- name: perl6 -v
run: perl6 -v
- name: Install Dependencies
run: zef install --deps-only --/test .
- name: Run Tests
run: PERL6LIB=$PWD/lib prove -e perl6 -vr t

0 comments on commit 3460443

Please sign in to comment.