|
28 | 28 | id: build-poetry |
29 | 29 | with: |
30 | 30 | sonar-platform: none |
31 | | - artifactory-reader-role: private-reader |
| 31 | + artifactory-reader-role: private-reader |
32 | 32 | artifactory-deployer-role: qa-deployer |
33 | 33 | deploy-pull-request: true |
34 | 34 |
|
|
41 | 41 | steps: |
42 | 42 | - name: Checkout repository |
43 | 43 | uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 |
44 | | - - name: Configure poetry |
| 44 | + - name: Configure poetry |
45 | 45 | uses: ./.github/actions/config-poetry # We use this job to cache the poetry depend |
46 | 46 | - run: | |
47 | 47 | poetry install |
@@ -136,7 +136,8 @@ jobs: |
136 | 136 | contents: write |
137 | 137 | strategy: |
138 | 138 | 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"] |
140 | 141 | steps: |
141 | 142 | - name: Checkout repository |
142 | 143 | uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 |
@@ -189,14 +190,24 @@ jobs: |
189 | 190 | if [ ! -f sonarqube_cache/sonarqube.zip ]; then |
190 | 191 | wget -q https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-$SONARQUBE_VERSION.zip -O sonarqube_cache/sonarqube.zip |
191 | 192 | fi |
192 | | - - name: Configure poetry |
| 193 | + - name: Configure poetry |
193 | 194 | uses: ./.github/actions/config-poetry |
194 | 195 | - name: Execute the integration tests |
195 | 196 | run: ./.github/scripts/run_its.sh |
196 | 197 |
|
197 | 198 | promote: |
198 | 199 | 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 | + ] |
200 | 211 | runs-on: github-ubuntu-latest-s |
201 | 212 | permissions: |
202 | 213 | id-token: write |
|
0 commit comments