Skip to content

Commit

Permalink
Use 'ubuntu-20.04' to test against Python 3.6
Browse files Browse the repository at this point in the history
Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
  • Loading branch information
github-actions[bot] and sethmlarson authored Jan 5, 2023
1 parent 9ecf733 commit 14850e4
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 @@ -24,7 +24,7 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: 3.x
Expand All @@ -38,15 +38,21 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
experimental: [false]
nox-session: [""]
runs-on: ["ubuntu-latest"]
include:
- python-version: 3.6
experimental: false
nox-session: test-3.6
runs-on: "ubuntu-20.04"
- python-version: 3.11-dev
experimental: true
nox-session: test-3.11
runs-on: "ubuntu-latest"

runs-on: ubuntu-latest
runs-on: ${{ matrix.runs-on }}
name: test-${{ matrix.python-version }}
continue-on-error: ${{ matrix.experimental }}
steps:
Expand Down

0 comments on commit 14850e4

Please sign in to comment.