Skip to content

Commit

Permalink
[formatting] fix workflow file syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
loukylor committed Oct 25, 2024
1 parent 122254b commit 8a2e00a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run Black
- uses: psf/black@stable
uses: psf/black@stable
with:
options: "--check --verbose"
src: "./src"
use_pyproject: true
version: "~= 24.8.0"
- name: Setup Python
- uses: actions/setup-python@v3
uses: actions/setup-python@v3
with:
python-version: 3.10.12
- name: Install Dependencies
- run: |
run: |
python -m pip install --upgrade pip
pip install pylint==3.2.7 mypy==1.11.2
- name: Run Pylint
- run: |
run: |
pylint $(git ls-files "*.py")
- name: Run Mypy
- run: |
run: |
mypy $(git ls-files "*.py")

0 comments on commit 8a2e00a

Please sign in to comment.