Skip to content

Commit

Permalink
ci: Update to latest runners
Browse files Browse the repository at this point in the history
As runners move from 20.04 to 22.04, the matrix moves to cover more
latest versions and dropping 3.6.

Signed-off-by: Adrian Moreno <[email protected]>
  • Loading branch information
amorenoz committed Jul 17, 2023
1 parent 8e7a360 commit a2f48c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7']
python-version: ['3.7', '3.9', '3.11']
name: Python ${{ matrix.python-version }} build
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:
jobs:
build-n-publish:
name: Build and Publish to PyPI or TestPyPI
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.6
python-version: 3.7
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:
jobs:
build-n-publish:
name: Build and Publish to PyPI or TestPyPI
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.6
python-version: 3.7
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit a2f48c5

Please sign in to comment.