Skip to content

Commit 41f7529

Browse files
committed
Remove final workflow step
This didn't work as I expected it would in GitHub Actions. If a `needs` workflow fails the final workflow is skipped. Skipped workflows, however, do not prevent a PR from being merged. Instead, just require the mypy and coverage workflows.
1 parent b752d45 commit 41f7529

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

.github/workflows/python-tests.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,3 @@ jobs:
105105
- name: "Enforce strict type annotations with mypy"
106106
run: |
107107
nox --session mypy_check
108-
109-
ci-success:
110-
name: "CI steps all completed successfully"
111-
needs: ["coverage-compile", "mypy-check"]
112-
runs-on: "ubuntu-latest"
113-
steps:
114-
- name: "Success"
115-
run: |
116-
echo "If you are seeing this, the CI run was successful."

0 commit comments

Comments
 (0)