From a030b3ed1f9511746a47d6e1e4528640dd6ed03a Mon Sep 17 00:00:00 2001 From: Grzegorz Banasiak Date: Mon, 2 Oct 2023 19:40:48 +0200 Subject: [PATCH] Modify Python versions used in GitHub actions (#462) --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13869213..a4544d3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,13 +38,13 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] os: - macos-latest - ubuntu-latest runs-on: ${{ matrix.os }} - name: ${{ fromJson('{"macos-latest":"macOS","ubuntu-latest":"Ubuntu"}')[matrix.os] }} ${{ matrix.python-version }} + name: unit ${{ fromJson('{"macos-latest":"macOS","ubuntu-latest":"Ubuntu"}')[matrix.os] }} ${{ matrix.python-version }} steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 @@ -64,13 +64,19 @@ jobs: status: FAILED rally-tracks-compat: + strategy: + fail-fast: false + matrix: + python-version: ["3.8", "3.11"] + runs-on: ubuntu-22.04 + name: rally-tracks-compat ${{ matrix.python-version }} steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: ${{ matrix.python-version }} cache: pip cache-dependency-path: pyproject.toml - uses: actions/setup-java@v3