Skip to content

Commit

Permalink
Modify Python versions used in GitHub actions (elastic#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbanasiak authored and inqueue committed Dec 6, 2023
1 parent 30ee255 commit a030b3e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit a030b3e

Please sign in to comment.