Skip to content

Commit

Permalink
Take Github workflow from Benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
2colours authored Nov 16, 2023
1 parent 8995b1a commit d084a6d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: test

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
workflow_dispatch:

jobs:
raku:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
raku-version:
- "latest"
- "2023.08"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Run tests and Install
run: zef install . --debug

0 comments on commit d084a6d

Please sign in to comment.