From 76630cf9037970ab9672fa5af4a0b917263c9800 Mon Sep 17 00:00:00 2001 From: Christian Nicolai Date: Thu, 10 Nov 2022 22:28:33 +0100 Subject: [PATCH] ci: support Python 3.10+ Also update GHA and Ubuntu versions --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5f095b..80d08de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,17 +12,19 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: + fail-fast: false matrix: python-version: - '3.7' - - '3.8' - '3.9' + - '3.10' + - '3.11' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies