Skip to content

install harfbuzz on CI test platforms #203

install harfbuzz on CI test platforms

install harfbuzz on CI test platforms #203

Workflow file for this run

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:

Check failure on line 23 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
- 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