Merge pull request #88 from BrianLusina/dependabot/pip/coverage-7.6.10 #416
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
name: Lint | |
on: | |
- push | |
- pull_request | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
lint-mypy: | |
strategy: | |
matrix: | |
python-version: [ '3.12' ] | |
name: mypy Type Checking | |
uses: SanctumLabs/ci-workflows/.github/workflows/python-lint.yml@main | |
with: | |
command: make lint-mypy | |
python-version: ${{ matrix.python-version }} | |
packager: poetry | |
lint-flake8: | |
strategy: | |
matrix: | |
python-version: [ '3.12' ] | |
name: Flake8 | |
uses: SanctumLabs/ci-workflows/.github/workflows/python-lint.yml@main | |
with: | |
command: make lint-flake8 | |
python-version: ${{ matrix.python-version }} | |
packager: poetry |