Skip to content

Tests

Tests #142

Workflow file for this run

name: Tests
on:
workflow_run:
workflows:
- Linters
types:
- completed
env:
CARGO_TERM_COLOR: always
jobs:
tests:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- name: Tests
run: cargo test --verbose