Skip to content

Commit

Permalink
adds one status check job
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Oct 21, 2024
1 parent 11a8d31 commit a743e9c
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 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 All @@ -26,7 +25,7 @@ jobs:
make lint
test:
name: TestSuite
if: success()
needs: lint
strategy:
matrix:
os: [ubuntu-24.04, windows-2022, macos-13, macos-14]
Expand Down Expand Up @@ -81,3 +80,15 @@ jobs:
if: always()
run: |
util/check_local_modifications.sh
check-all-jobs:
name: Check all jobs
needs: test
if: always()
runs-on: ubuntu-24.04
steps:
- name: Success
if: success()
run: exit 0
- name: Failure
if: failure() || cancelled()
run: exit 1

0 comments on commit a743e9c

Please sign in to comment.