Skip to content

Commit

Permalink
use github matrix to allow parallel runs
Browse files Browse the repository at this point in the history
  • Loading branch information
getzze committed Jul 31, 2024
1 parent 21f9a54 commit 3439ec8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python package
name: CI

on:
push:
Expand Down Expand Up @@ -114,12 +114,18 @@ jobs:
- name: Download coverage data
uses: actions/download-artifact@v4
with:
name: coverage-*
pattern: coverage-*
path: report
merge-multiple: true
- name: Combine and report coverage
run: hatch run coverage:run

- name: Upload HTML report
uses: actions/upload-artifact@v4
with:
name: html-report
path: report/html

- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit 3439ec8

Please sign in to comment.