Skip to content

Commit

Permalink
debug: make macos 3.10 optional for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
onerandomusername committed Nov 19, 2021
1 parent f047211 commit 70cf1a5
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,21 @@ jobs:

test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
continue-on-error: ${{ matrix.optional }}
strategy:
fail-fast: false
matrix:
python_version: ['3.8', '3.9','3.10']
os: [ubuntu-latest, windows-latest, macos-latest]
experimental: [false]
python_version: ['3.8', '3.9','3.10']
optional: [false]
exclude:
# currently has a segfault issue, so we exclude and reinclude as optional
- os: macos-latest
python_version: '3.10'
include:
# currently has a segfault issue,
- os: macos-latest
python_version: '3.10'
experimental: true
optional: true
env:
PYTHON_VERSION: ${{ matrix.python_version }}
steps:
Expand Down

0 comments on commit 70cf1a5

Please sign in to comment.