Skip to content

Commit

Permalink
Try python 3.12 on ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
adsharma committed May 5, 2024
1 parent 502e880 commit 1ecd6b3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,18 @@ jobs:
strategy:
matrix:
os:
- ubuntu:24.04
- ubuntu-latest
py:
- "3.12"
- "3.10"
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}

- name: Install tox
run: pip3 install tox
Expand All @@ -32,7 +39,7 @@ jobs:
tox
lint:
runs-on: ubuntu:24.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 1ecd6b3

Please sign in to comment.