Skip to content

Make $!surface required #39

Make $!surface required

Make $!surface required #39

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'
- '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: |
# install and test if need be (includes [test-depends])
if [ "$RUNNER_OS" == "Linux" ]; then
:; # already installed
#sudo apt-get install -y libcairo2
elif [ "$RUNNER_OS" == "macOS" ]; then
brew update
brew install cairo
else
echo "$RUNNER_OS not supported"
exit 1;
fi
zef install --deps-only .
zef install --/test App::Prove6
- name: Run Tests
run: prove6 -I. t
- name: Install Module
run: zef install --verbose .