Skip to content

Commit

Permalink
ci: Fix missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bahlo committed Jul 31, 2024
1 parent 9aba96f commit 3e296b9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
pull_request:

jobs:
lint:
name: Lint
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +35,6 @@ jobs:
name: Docker
runs-on: ubuntu-latest
needs:
- lint
- check
- test
steps:
Expand All @@ -61,7 +60,6 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
needs:
- lint
- check
- test
steps:
Expand All @@ -73,4 +71,4 @@ jobs:
- run: pdm publish
env:
PDM_PUBLISH_USERNAME: "__token__"
PDM_PUBLISH_PASSWORD: "${{ secrets.PYPI_TOKEN }}"
PDM_PUBLISH_PASSWORD: "${{ secrets.PYPI_TOKEN }}"

0 comments on commit 3e296b9

Please sign in to comment.