[pre-commit.ci] auto fixes from pre-commit.com hooks #382
This file contains hidden or 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
| # This workflow will upload a Python Package using Twine when a release is created | |
| # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
| name: Code Quality | |
| on: | |
| push: {} | |
| release: | |
| types: [created] | |
| jobs: | |
| quality: | |
| name: pre-commit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: sudo apt-get install -y pandoc # Needed by sphinx for notebooks | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| - uses: pre-commit/[email protected] | |
| env: | |
| SKIP: "no-commit-to-branch" |