Skip to content

Commit

Permalink
🎨 Stop combining
Browse files Browse the repository at this point in the history
Signed-off-by: zethson <[email protected]>
  • Loading branch information
Zethson committed Sep 16, 2024
1 parent 14b87a2 commit 8b632a8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
group: ["bionty-unit", "bionty-docs"]
timeout-minutes: 25

Expand Down Expand Up @@ -47,14 +47,14 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1
- run: nox -s lint
if: matrix.python-version == '3.10' && matrix.group == 'bionty-unit'
if: matrix.python-version == '3.11' && matrix.group == 'bionty-unit'
- run: nox -s "build(group='${{ matrix.group }}')"
- uses: actions/upload-artifact@v3
with:
name: coverage--${{ matrix.group }}
path: .coverage
- uses: nwtgck/[email protected]
if: ${{ matrix.python-version == '3.10' && matrix.group == 'bionty-docs' }}
if: ${{ matrix.python-version == '3.11' && matrix.group == 'bionty-docs' }}
with:
publish-dir: "_build/html"
production-deploy: ${{ github.event_name == 'push' }}
Expand All @@ -71,15 +71,14 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"
- run: |
pip install -U pip uv
uv pip install --system coverage[toml]
uv pip install --system --no-deps .
- uses: actions/download-artifact@v3
- name: run coverage
run: |
coverage combine coverage--*/.coverage*
coverage report --fail-under=0
coverage xml
- uses: codecov/codecov-action@v2
Expand Down

0 comments on commit 8b632a8

Please sign in to comment.