Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adds one status check job #112

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 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 All @@ -50,7 +49,7 @@ jobs:
with:
python-version: ${{ matrix.py-version }}
- name: Install scoop and gnu findutils on windows
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-2022'
run: |
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
scoop install findutils
Expand Down Expand Up @@ -81,3 +80,11 @@ jobs:
if: always()
run: |
util/check_local_modifications.sh
failure:
name: Check all jobs
needs: test
if: ${{ failure() || cancelled() }}
runs-on: ubuntu-24.04
steps:
- name: Failure
run: exit 1
Loading