Temporarily skip building wheels for 3.13 until it is released #162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pre-commit checks | |
on: | |
push: | |
# Run this workflow on all branches because it is good to flag these errors | |
# and this workflow is "cheap" | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
precommit: | |
name: Pre-commit checks | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.9' | |
- name: Install package with dev dependencies | |
run: | | |
python -m pip install .[dev] | |
- name: Pre-commit checks | |
run: | | |
pre-commit run --all-files |