Skip to content

Tests

Tests #20

Workflow file for this run

name: Tests
on:
push:
branches: [ "master"]
paths:
- '.github/workflows/test.yml'
- 'src/**'
- 'tests/**'
- 'Cargo.toml'
pull_request:
branches: [ "master", "release"]
paths:
- '.github/workflows/test.yml'
- 'src/**'
- 'tests/**'
- 'Cargo.toml'
schedule:
- cron: "5 0 * * 1"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test --verbose