From c150c7671f3c00fd1afc3f2594b1da0a9d3c5ac1 Mon Sep 17 00:00:00 2001 From: yuji suzuki <124127211+yjszk@users.noreply.github.com> Date: Wed, 22 May 2024 21:12:55 +0900 Subject: [PATCH] github actions run in all python versions and ci version up (#519) --- .github/workflows/python-tests.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 375414b6..5ee48ccc 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -14,12 +14,17 @@ jobs: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.8 - uses: actions/setup-python@v2 + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: ${{ matrix.python-version }} - name: Install system dependencies run: | sudo apt-get update