Skip to content

Commit

Permalink
Use a different lint config
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonZacharie committed May 11, 2024
1 parent 1d6f13f commit 8d92478
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,19 @@ permissions:

jobs:
lint:
name: Black
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "./"
use_pyproject: true

- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "."
version: "~= 24.4"
use_pyproject: true

test:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -44,7 +47,7 @@ jobs:
with:
parallel: true
flag-name: Unit Test

report:
needs: test
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8d92478

Please sign in to comment.