Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
ci(github): Add GitHub Action for running tests (#14)
Browse files Browse the repository at this point in the history
Currently running tests on windows is disabled. See #15

closes #14
  • Loading branch information
kalkin committed Nov 5, 2022
1 parent f2bb173 commit f63b825
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Tests
on:
pull_request:
push:
schedule:
- cron: 1 1 * * 5
workflow_dispatch:
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
# - windows-latest
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: Raku/setup-raku@v1

- name: Raku version
run: raku -v

- name: Install dependencies
run: zef install --deps-only --/test --test-depends .

- name: Run tests
run: zef test -v --debug .

0 comments on commit f63b825

Please sign in to comment.