From d5810731beab675014e541805f325e8ef7917079 Mon Sep 17 00:00:00 2001 From: "Matt.Wang" Date: Sun, 12 Feb 2023 23:12:51 +0800 Subject: [PATCH] chore(ci): update ubuntu and python version --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 820de71..eb91bad 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,12 +8,12 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 strategy: # set fail-fast to prevent github cancels all in-progress jobs if any matrix job fail fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9, '3.10', 3.11] steps: - uses: actions/checkout@v2