Skip to content

Commit

Permalink
Add continue-on-error flag
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 committed Apr 19, 2023
1 parent 63256c1 commit 4140351
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ jobs:
test:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - ${{ matrix.python }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
# Test all supported versions on Ubuntu:
os: [ubuntu-latest]
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
experimental: [false]
include:
# Handling as the experimental job
- os: ubuntu-latest
Expand All @@ -29,14 +31,19 @@ jobs:
# Also test PyPy, macOS, and Windows:
- os: ubuntu-latest
python: pypy-3.9
experimental: false
- os: ubuntu-latest
python: pypy-3.8
experimental: false
- os: ubuntu-latest
python: pypy-3.7
experimental: false
- os: macos-latest
python: "3.10"
experimental: false
- os: windows-latest
python: "3.10"
experimental: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
Expand Down

0 comments on commit 4140351

Please sign in to comment.