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 23, 2024
1 parent 989b83b commit 49ddba9
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .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 @@ -68,7 +67,7 @@ jobs:
integration-tests:
name: Integration tests
needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install python version
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 49ddba9

Please sign in to comment.