From e5c6c1bba77c32532846860f1b2f91630db1aa2d Mon Sep 17 00:00:00 2001 From: Evgeny Vlasenko Date: Sun, 22 Sep 2024 23:14:41 +0400 Subject: [PATCH] chore: test on python 3.8 3.10 and 3.12 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fbd2587..48e700f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,15 +5,15 @@ on: - release jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - python-version: [3.8] + python-version: ['3.8', '3.10', '3.12'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -97,7 +97,7 @@ jobs: if: steps.branch-names.outputs.is_tag == 'false' run: | git checkout gh-pages - git checkout ${{ steps.branch-names.outputs.current_branch }} + git checkout ${{ steps.branch-names.outputs.current_branch }} - name: Setup Python 3.8 uses: actions/setup-python@v2 with: