Skip to content

Commit

Permalink
Set up 3os testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Dec 28, 2024
1 parent 595cfd0 commit 179bed7
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
File renamed without changes.
31 changes: 31 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: test

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
raku:
strategy:
matrix:
os:
- macos-latest
raku-version:
- 'latest'
- '2022.02'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Install Dependencies
run: |
zef install --/test App::Prove6
zef install --deps-only .
- name: Run Tests
run: prove6 -I. t
31 changes: 31 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: test

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
raku:
strategy:
matrix:
os:
- windows-latest
raku-version:
- 'latest'
- '2022.02'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Install Dependencies
run: |
zef install --/test App::Prove6
zef install --deps-only .
- name: Run Tests
run: prove6 -I. t

0 comments on commit 179bed7

Please sign in to comment.