diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index c31e0aa..846c324 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -10,7 +10,7 @@ jobs: if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }} strategy: matrix: - python-version: ["3.11"] + python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/tox.ini b/tox.ini index 941065b..52e9c21 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,13 @@ [tox] skipsdist = true -envlist = py{311}, lint, typing +envlist = py{311,312}, lint, typing skip_missing_interpreters = True cs_exclude_words = hass,unvalid [gh-actions] python = 3.11: clean, py311, lint, typing + 3.12: clean, py312, lint, typing [testenv] passenv = TOXENV,CI