Skip to content

Commit

Permalink
adds one status job to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Oct 21, 2024
1 parent 989b83b commit 403f994
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ permissions:
jobs:
lint:
name: PyLint
needs: test
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -103,3 +102,11 @@ jobs:
if: always()
run: |
util/check_local_modifications.sh
failure:
name: Check all jobs
needs: integration-tests
if: ${{ failure() || cancelled() }}
runs-on: ubuntu-24.04
steps:
- name: Failure
run: exit 1

0 comments on commit 403f994

Please sign in to comment.