Skip to content

Commit eddad39

Browse files
committed
ci: update build workflow to use Ubuntu 24.04 and adjust Python version conditions
1 parent 9a5bcb9 commit eddad39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111

1212
build:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
strategy:
1515
matrix:
1616
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
@@ -46,15 +46,15 @@ jobs:
4646
run: |
4747
export CODACY_PROJECT_TOKEN=${{ secrets.CODACY_PROJECT_TOKEN }}
4848
bash <(curl -Ls https://coverage.codacy.com/get.sh) report -r .coverage.xml
49-
if: matrix.python-version == '3.10' && github.event_name != 'pull_request'
49+
if: matrix.python-version == '3.12' && github.event_name != 'pull_request'
5050

5151
deploy:
5252
needs: build
5353
runs-on: ubuntu-latest
5454
if: github.event_name == 'release'
5555
strategy:
5656
matrix:
57-
python-version: ["3.10"]
57+
python-version: ["3.12"]
5858
steps:
5959
- uses: actions/checkout@v4
6060
- name: Setup Python # Set Python version

0 commit comments

Comments
 (0)