diff options
author | Matias Linares <matiaslina@gmail.com> | 2020-12-27 11:58:38 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2020-12-27 11:58:38 -0300 |
commit | 84dad3c022ed222f9c63fe50af18125c1009df7d (patch) | |
tree | bb06fe2126f72a9d1990ff4abf966ba05609ebca /.github | |
parent | 9e21432cb90b3d1ae4867871a05841f4687ecc01 (diff) | |
download | perl6-matrix-client-84dad3c022ed222f9c63fe50af18125c1009df7d.tar.gz |
Update github action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f059876..38432cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,15 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Run tests id: tests - uses: JJ/raku-container-action@master + uses: Raku/setup-raku@v1 + with: + raku-version: 'latest' + - name: Install Dependencies + run: zef install --deps-only --/test --test-depends . + - name: Install App::Prove6 + run: zef install --/test App::Prove6 + - name: Run Tests + run: prove6 -l t xt |