Skip to content

Commit

Permalink
use 3.12.2 explicitly in GH Action
Browse files Browse the repository at this point in the history
  • Loading branch information
sodul committed Feb 12, 2024
1 parent 9a75de2 commit a125951
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [
"3.8", "3.9", "3.10", "3.11", "3.12",
"3.8", "3.9", "3.10", "3.11", "3.12.2",
"pypy3.8", "pypy3.9", "pypy3.10"
]
fail-fast: false
Expand All @@ -35,11 +35,11 @@ jobs:
- name: Format
run: black --check --diff green example
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.12.2' && matrix.os == 'ubuntu-latest'

- name: Mypy
run: mypy green example
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.12.2' && matrix.os == 'ubuntu-latest'

- name: Test
run: |
Expand All @@ -50,10 +50,10 @@ jobs:
run: |
pip install --upgrade coveralls
green -tvvvvr green
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.12.2' && matrix.os == 'ubuntu-latest'

- name: Coveralls
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: matrix.python-version == '3.12' && matrix.os == 'ubuntu-latest'
if: matrix.python-version == '3.12.2' && matrix.os == 'ubuntu-latest'

0 comments on commit a125951

Please sign in to comment.