-
Notifications
You must be signed in to change notification settings - Fork 3
44 lines (42 loc) · 1 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: test
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
#- windows-latest
raku-version:
- 'latest'
- '2022.07'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Linux specific setup
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get install -y libharfbuzz-dev
- name: macOS specific setup
if: contains(matrix.os, 'macOS')
run: |
brew update
brew install harfbuzz
brew install openssl
- name: Install Dependencies
run: |
# install and test if need be (includes [test-depends])
zef install --/test App::Prove6
zef install --deps-only .
- name: Run Tests
run: prove6 -I. t