@@ -16,14 +16,12 @@ jobs:
1616 fail-fast : false
1717 matrix :
1818 include :
19- - { python-version: "3.11", os: ubuntu-latest, session: "pre-commit" }
20- - { python-version: "3.11", os: ubuntu-latest, session: "safety" }
21- - { python-version: "3.11", os: ubuntu-latest, session: "mypy" }
22- - { python-version: "3.11", os: ubuntu-latest, session: "tests" }
23- - { python-version: "3.11", os: windows-latest, session: "tests" }
24- - { python-version: "3.11", os: ubuntu-latest, session: "typeguard" }
25- - { python-version: "3.11", os: ubuntu-latest, session: "xdoctest" }
26- - { python-version: "3.11", os: ubuntu-latest, session: "docs-build" }
19+ - { python-version: "3.12", os: ubuntu-latest, session: "pre-commit" }
20+ - { python-version: "3.12", os: ubuntu-latest, session: "mypy" }
21+ - { python-version: "3.12", os: ubuntu-latest, session: "tests" }
22+ - { python-version: "3.12", os: windows-latest, session: "typeguard" }
23+ - { python-version: "3.12", os: ubuntu-latest, session: "xdoctest" }
24+ - { python-version: "3.12", os: ubuntu-latest, session: "docs-build" }
2725
2826 env :
2927 NOXSESSION : ${{ matrix.session }}
6664 print("::set-output name=result::{}".format(result))
6765
6866 - name : Restore pre-commit cache
69- 67+ 7068 if : matrix.session == 'pre-commit'
7169 with :
7270 path : ~/.cache/pre-commit
@@ -99,10 +97,10 @@ jobs:
9997 - name : Check out the repository
10098 uses : actions/checkout@v4
10199
102- - name : Set up Python 3.11
100+ - name : Set up Python 3.12
103101 uses : actions/setup-python@v5
104102 with :
105- python-version : 3.11
103+ python-version : 3.12
106104
107105 - name : Install Poetry
108106 run : |
@@ -129,6 +127,6 @@ jobs:
129127 run : nox --force-color --session=coverage -- xml -i
130128
131129 - name : Upload coverage report
132- uses : codecov/codecov-action@v5.1.1
130+ uses : codecov/codecov-action@v5.4.3
133131 with :
134132 token : ${{ secrets.CODECOV_TOKEN }}
0 commit comments