From 3ec2c5b0625e181da39da3c501a16dce55f4dea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sat, 16 Jul 2022 11:17:41 +0200 Subject: [PATCH] Test with python 3.11 --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd4b22c..10eb297 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,14 @@ on: jobs: test: runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ "3.10", "3.11" ] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: ${{ matrix.python-version }} - name: Install project run: | pip install -U "pip>=21.3.1"