Skip to content

Commit

Permalink
Use only certain combinations of HA & Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pnbruckner committed Mar 7, 2024
1 parent 1948140 commit bf11b2a
Showing 1 changed file with 22 additions and 17 deletions.
39 changes: 22 additions & 17 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,29 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
# 0.13.17 -> HA 2023.4.0
# 0.13.107 -> HA 2024.3.0
hass-test-cc-version: ["0.13.107"]
include:
- hass-test-cc-version: "0.13.17"
python-version: "3.10"
- hass-test-cc-version: "0.13.107"
python-version: "3.11"
- hass-test-cc-version: "0.13.107"
python-version: "3.12"

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install pytest-homeassistant-custom-component==${{ matrix.hass-test-cc-version }}
- name: Test with pytest
run: |
pytest
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install pytest-homeassistant-custom-component==${{ matrix.hass-test-cc-version }}
- name: Test with pytest
run: |
pytest

0 comments on commit bf11b2a

Please sign in to comment.