Skip to content

Commit

Permalink
Use standalone jobs for black and isort actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Mar 5, 2023
1 parent f0ecc2f commit 08ab3f9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -20,5 +20,11 @@ jobs:
- name: Test
run: make test
- uses: codecov/codecov-action@v3
- uses: isort/isort-action@v1.0.0
- uses: psf/black@stable
black:
runs-on: ubuntu-22.04
steps:
- uses: psf/black@stable
isort:
runs-on: ubuntu-22.04
steps:
- uses: isort/isort-action@v1.1.0

0 comments on commit 08ab3f9

Please sign in to comment.