Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgafni committed Nov 1, 2023
1 parent 4811c78 commit ec1a2d9
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,16 @@ jobs:
- name: Run pre-commit hooks
run: pre-commit run --all-files

# qa_success:
# needs: [test, lint]
# runs-on: ubuntu-latest
# steps:
# - name: Success
# run: echo "Success!"
qa_success:
name: QA Success
needs: [test, lint]
runs-on: ubuntu-latest
steps:
- name: Success
run: echo "Success!"

publish:
needs: [test, lint]
needs: qa_success
if: contains(github.ref, 'refs/tags/')
name: Publish to PyPI
strategy:
Expand Down

0 comments on commit ec1a2d9

Please sign in to comment.