Release 0.5.0 #47
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
# Runs the pre-commit hooks to make sure that all pushes are properly and consistently treated | |
# Also triggers for PRs (potentially coming from external) into master and Release* branches | |
name: Pre-commit hooks | |
on: | |
push: | |
branches: ['**'] # note: without branches would execute for tags, too | |
pull_request: | |
branches: [ "master", "Release*" ] | |
permissions: | |
contents: read | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- uses: pre-commit/action@v3.0.0 | |
- uses: pre-commit-ci/lite-action@v1.0.1 | |
if: always() |