Setup automated Python package version bump #6
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
# ----------------------------------------------------------------------------- | |
# pre-commit tests | |
# ----------------------------------------------------------------------------- | |
name: Test pre-commit rules | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
# see: https://pre-commit.ci/lite.html | |
- name: pre-commit ci | |
id: pre-commit-ci | |
if: always() | |
uses: pre-commit-ci/[email protected] |