Skip to content

Test

Test #3

Workflow file for this run

name: Test
on:
push:
pull_request:
schedule:
- cron: '0 7 * * 6'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
- run: python3 -m pip install .[dev]
- run: make test