Skip to content

Commit

Permalink
workflows: test non blockin jobs when failing
Browse files Browse the repository at this point in the history
  • Loading branch information
francof2a committed Feb 7, 2024
1 parent 3d4c9dc commit 859a213
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ on:
branches: [ master ]

jobs:
if: always()
build:
name: Test on ${{ matrix.os }} with Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ on:
jobs:
build:
name: Test on ${{ matrix.os }} with Python ${{ matrix.python-version }}
if: ${{ always() }}
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ on:
branches: [ master ]

jobs:
if: always()
build:
name: Test on ubuntu-22.04 with Python ${{ matrix.python-version }}
runs-on: ubuntu-22.04
continue-on-error: true
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

Expand Down

0 comments on commit 859a213

Please sign in to comment.