Skip to content

Commit

Permalink
Cover Ubuntu update in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Shutgun committed Jan 14, 2025
1 parent 0bc50d5 commit 0b3f616
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,29 @@ jobs:
mypy tests || true
test:
name: Test with Python 3.7
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: 3.7
allow-prereleases: true
check-latest: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Test with pytest
run: |
pytest --cov=devolo_home_control_api
name: Test with Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout sources
uses: actions/[email protected]
Expand Down

0 comments on commit 0b3f616

Please sign in to comment.