Merge pull request #828 from JonathanPlasse/fix-type-annotations #189
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
# https://pre-commit.com | |
# This GitHub Action assumes that the repo contains a valid .pre-commit-config.yaml file. | |
# Using pre-commit.ci is even better that using GitHub Actions for pre-commit. | |
name: pre-commit | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- uses: pre-commit/action@v3.0.0 |