Skip to content

Commit ceafb3e

Browse files
committed
Removed unnecessary job dependency
1 parent 2f518d9 commit ceafb3e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
formatting:
3434
name: "Formatting"
3535
runs-on: github-ubuntu-latest-s
36-
needs: [build]
3736
permissions:
3837
id-token: write
3938
contents: write
@@ -57,7 +56,6 @@ jobs:
5756
documentation:
5857
name: "CLI Documentation"
5958
runs-on: github-ubuntu-latest-s
60-
needs: [build]
6159
permissions:
6260
id-token: write
6361
contents: read
@@ -74,7 +72,6 @@ jobs:
7472
analysis:
7573
name: "NEXT Analysis"
7674
runs-on: github-ubuntu-latest-s
77-
needs: [build]
7875
permissions:
7976
id-token: write
8077
contents: write
@@ -97,7 +94,6 @@ jobs:
9794
qa:
9895
name: "Test Python ${{ matrix.python-version }}"
9996
runs-on: github-ubuntu-latest-s
100-
needs: [build]
10197
permissions:
10298
id-token: write
10399
contents: write
@@ -122,7 +118,6 @@ jobs:
122118
qa-windows:
123119
name: "Test Windows"
124120
runs-on: github-windows-latest-s
125-
needs: [build]
126121
permissions:
127122
id-token: write
128123
contents: write
@@ -142,7 +137,6 @@ jobs:
142137
its:
143138
name: "Integration Tests"
144139
runs-on: github-ubuntu-latest-s
145-
needs: [build]
146140
permissions:
147141
id-token: write
148142
contents: write
@@ -168,7 +162,7 @@ jobs:
168162

169163
promote:
170164
name: "Promote"
171-
needs: [formatting, documentation, analysis, qa, qa-windows, its]
165+
needs: [build, formatting, documentation, analysis, qa, qa-windows, its]
172166
runs-on: github-ubuntu-latest-s
173167
permissions:
174168
id-token: write

0 commit comments

Comments
 (0)