Skip to content

Commit 5377cc3

Browse files
Move setup after checkout
1 parent e8cf0a8 commit 5377cc3

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -162,12 +162,11 @@ jobs:
162162
# - "3.13.0-alpha.5" # ? https://github.com/PyO3/pyo3/issues/3555
163163
runs-on: "${{ matrix.runner }}"
164164
steps:
165-
- if: startsWith(matrix.runner, 'ubuntu')
166-
name: "Install PySide6 system dependencies"
167-
run: "scripts/Initialize-Linux.ps1"
168165
- uses: "actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332" # v4.1.7
169166
with:
170167
submodules: True
168+
- if: startsWith(matrix.runner, 'ubuntu')
169+
run: "scripts/Initialize-Linux.ps1"
171170
- uses: "actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e" # v4.1.7
172171
with:
173172
name: "lock"

.github/workflows/high.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,11 @@ jobs:
118118
python: ["3.11"]
119119
runs-on: "${{ matrix.runner }}"
120120
steps:
121-
- if: startsWith(matrix.runner, 'ubuntu')
122-
name: "Install PySide6 system dependencies"
123-
run: "scripts/Initialize-Linux.ps1"
124121
- uses: "actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332" # v4.1.7
125122
with:
126123
submodules: True
124+
- if: startsWith(matrix.runner, 'ubuntu')
125+
run: "scripts/Initialize-Linux.ps1"
127126
- uses: "actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e" # v4.1.7
128127
with:
129128
name: "lock"

0 commit comments

Comments
 (0)