Skip to content

Commit

Permalink
minor adjustment of the build.yml file trying to fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jrzaurin committed Sep 24, 2024
1 parent 1b32705 commit 8f7edd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -56,7 +56,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: coverage${{ matrix.python-version }}
path: .coverage
path: coverage-files

finish:
needs: test
Expand All @@ -77,7 +77,7 @@ jobs:
uses: actions/download-artifact@v4
- name: Convert coverage
run: |
coverage combine coverage*/.coverage*
coverage combine coverage-files/*/.coverage*
coverage report --fail-under=90
coverage xml
- name: upload coverage to Codecov
Expand Down

0 comments on commit 8f7edd6

Please sign in to comment.