Skip to content

Commit f6dfc55

Browse files
committed
test 3.14
1 parent 2f8e4c4 commit f6dfc55

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
id: build-poetry
2929
with:
3030
sonar-platform: none
31-
artifactory-reader-role: private-reader
31+
artifactory-reader-role: private-reader
3232
artifactory-deployer-role: qa-deployer
3333
deploy-pull-request: true
3434

@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- name: Checkout repository
4343
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
44-
- name: Configure poetry
44+
- name: Configure poetry
4545
uses: ./.github/actions/config-poetry # We use this job to cache the poetry depend
4646
- run: |
4747
poetry install
@@ -136,7 +136,8 @@ jobs:
136136
contents: write
137137
strategy:
138138
matrix:
139-
python-version: ["3.9.18", "3.9.6", "3.10.13", "3.11.7", "3.12.1", "3.13.2"]
139+
python-version:
140+
["3.9.18", "3.9.6", "3.10.13", "3.11.7", "3.12.1", "3.13.2", "3.14.0"]
140141
steps:
141142
- name: Checkout repository
142143
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
@@ -189,14 +190,24 @@ jobs:
189190
if [ ! -f sonarqube_cache/sonarqube.zip ]; then
190191
wget -q https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-$SONARQUBE_VERSION.zip -O sonarqube_cache/sonarqube.zip
191192
fi
192-
- name: Configure poetry
193+
- name: Configure poetry
193194
uses: ./.github/actions/config-poetry
194195
- name: Execute the integration tests
195196
run: ./.github/scripts/run_its.sh
196197

197198
promote:
198199
name: "Promote"
199-
needs: [build, formatting, documentation, coverage, analysis, qa, qa-windows, its]
200+
needs:
201+
[
202+
build,
203+
formatting,
204+
documentation,
205+
coverage,
206+
analysis,
207+
qa,
208+
qa-windows,
209+
its,
210+
]
200211
runs-on: github-ubuntu-latest-s
201212
permissions:
202213
id-token: write

0 commit comments

Comments
 (0)