- Adds two methods: .not-supported and .server-error which will return status codes 500 and 505, respectively. #188
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
raku: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
# - macOS-latest | |
# - windows-latest | |
raku-version: | |
- "2022.04" | |
- "latest" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Raku/setup-raku@v1 | |
with: | |
raku-version: ${{ matrix.raku-version }} | |
- run: zef install https://github.com/croservices/cro-core/archive/master.zip | |
- run: zef install https://github.com/croservices/cro-tls/archive/master.zip | |
- name: Setup dependencies | |
run: raku -v && zef install --deps-only . | |
- name: Test code | |
run: prove -e 'raku -Ilib' t/ xt/ |