setup.cfg: Trove classifiers: Programming Language :: Python :: 3 #119
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
# This Action uses minimal steps to run in ~5 seconds to rapidly: | |
# find typos in the codebase using codespell, and | |
# lint Python code using ruff and provide intuitive GitHub Annotations to contributors. | |
# https://github.com/codespell-project/codespell#readme | |
# https://beta.ruff.rs | |
name: codespell_and_ruff | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
codespell_and_ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install --user codespell[toml] ruff | |
- run: codespell # --ignore-words-list="" --skip="*.css,*.js,*.lock,*.po" | |
- run: ruff check --output-format=github --target-version=py38 . |