-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 864 Bytes
/
main.yml
File metadata and controls
35 lines (30 loc) · 864 Bytes
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
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "v0.1" ]
pull_request:
branches: [ "main", "v0.1" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# matrix setup for multiple versions and OSs
# License: MIT
jobs:
raku:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
rakudo-version:
- "latest"
- "2021.12"
- "2020.12"
fail-fast: false
uses: vrurg/raku-build-tools/.github/workflows/default-test-workflow.yml@workflow-v1
with:
os: ${{ matrix.os }}
rakudo-version: ${{ matrix.rakudo-version }}
with-openssl: true