Skip to content

Commit

Permalink
convert to 3os testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Aug 8, 2024
1 parent 0baae13 commit 1845cd6
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/test.yml → .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
matrix:
os:
- ubuntu-latest
- macOS-latest
# - windows-latest
raku-version:
- 'latest'
- '2021.12'
Expand All @@ -28,9 +26,6 @@ jobs:
- name: Install Libraries (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libfreetype6-dev
- name: Install Libraries (MacOS)
if: matrix.os == 'macOS-latest'
run: brew reinstall freetype
- name: Install Dependencies
run: |
zef install --/test App::Prove6
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: test

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

jobs:
raku:
strategy:
matrix:
os:
- macOS-latest
raku-version:
- 'latest'
- '2021.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Install Libraries (MacOS)
if: matrix.os == 'macOS-latest'
run: brew reinstall freetype
- name: Install Dependencies
run: |
zef install --/test App::Prove6
zef install --deps-only .
zef build .
- name: Run Tests
run: prove6 -I. t
32 changes: 32 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: test

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

jobs:
raku:
strategy:
matrix:
os:
- windows-latest
raku-version:
- 'latest'
- '2021.12'
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 .
zef build .
- name: Run Tests
run: prove6 -I. t

0 comments on commit 1845cd6

Please sign in to comment.