Skip to content

Commit

Permalink
Simplify tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fronzbot authored Jun 7, 2024
1 parent 18d2765 commit 3dea4e7
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
platform:
- ubuntu-latest
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- name: Check out code from GitHub
uses: actions/[email protected]
Expand All @@ -32,33 +31,3 @@ jobs:
- name: Tests
run: |
tox -r
- name: Upload coverage
uses: actions/[email protected]
with:
name: coverage-${{ matrix.python-version }}-${{ matrix.platform }}
path: coverage.xml
overwrite: true
coverage:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform:
- ubuntu-latest
python-version: ['3.11']
needs:
- pytest
timeout-minutes: 10
steps:
- name: Check out code from GitHub
uses: actions/[email protected]
- name: Download all coverage artifacts
uses: actions/[email protected]
with:
path: coverage-${{ matrix.python-version }}-${{ matrix.platform }}
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
name: blinkpy

0 comments on commit 3dea4e7

Please sign in to comment.