Skip to content

Commit

Permalink
fix(test-python-poetry): continue-on-error for python 3.x (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare authored Nov 4, 2023
1 parent fc44ad3 commit 524a05a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test-python-poetry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ on:
jobs:
pytest:
runs-on: ubuntu-latest
name: Test python ${{ matrix.python-version }}
strategy:
matrix:
python-version: [ '3.x', '${{ inputs.version }}' ]
name: Test python ${{ matrix.python-version }}
python-version: [ '${{ inputs.version }}' ]
experimental: [false]
include:
- python-version: '3.x'
experimental: true
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 524a05a

Please sign in to comment.