From 52495cf2e7d62be9c2828d8cf5f8e28b14d23a59 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 29 May 2023 09:31:35 +0200 Subject: [PATCH] misc: Add Python v3.12-dev to the testing --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 517b2d95a4..e7a6accd27 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,14 +13,15 @@ jobs: steps: - uses: actions/checkout@v3 - run: pip install --user ruff - - run: ruff --format=github --select="E,F,PLC,PLE,UP,W,YTT" --ignore="PLC1901,S101,UP031" --target-version=py37 . + - run: ruff --format=github --select="ASYNC,E,F,PLC,PLE,UP,W,YTT" + --ignore="PLC1901,S101,UP031" --target-version=py38 . Tests: strategy: fail-fast: false max-parallel: 15 matrix: node: [16.x, 18.x, 20.x] - python: ["3.8", "3.11"] + python: ["3.8", "3.11", "3.12-dev"] os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: