Skip to content
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
17 changes: 15 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python multi version tests
run-name: >-
${{ github.event_name == 'schedule' && format('Schedule [{0}]', github.ref_name)
|| format('{0} [{1}]', github.event.head_commit.message || github.event.pull_request.title, github.ref_name) }}
on:
push:
branches: [ 'main' ]
Expand Down Expand Up @@ -53,7 +56,7 @@ jobs:
if: needs.pytest-version-check.outputs.should_run == 'true'
runs-on: ubuntu-latest
strategy:
fail-fast: false
fail-fast: true
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
pytest-version: ['7.0.1', 'latest']
Expand Down Expand Up @@ -91,4 +94,14 @@ jobs:
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage_report/lcov.info
path-to-lcov: coverage_report/lcov.info
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Close Coveralls build
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true