Skip to content

Move to action to share code #98

Move to action to share code

Move to action to share code #98

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
schedule:
- cron: "0 8 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
- "3.9"
steps:
- uses: tox-dev/action-pre-commit-mirrorer/check@main
with:
python: "${{ matrix.python }}"