Skip to content

Commit c519fa1

Browse files
committed
fix: make jobs runs one after another
Signed-off-by: K.B.Dharun Krishna <[email protected]>
1 parent 44b40fa commit c519fa1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
run: |
5050
python3 -m pip install .
5151
tldr --version
52-
tldr tldr --markdown
5352
5453
build-macos:
5554
runs-on: macos-latest
55+
needs: ['build-linux']
5656

5757
permissions:
5858
contents: read
@@ -100,6 +100,7 @@ jobs:
100100
101101
build-windows:
102102
runs-on: windows-latest
103+
needs: ['build-macos']
103104

104105
permissions:
105106
contents: read
@@ -146,6 +147,7 @@ jobs:
146147
147148
build-windows-arm:
148149
runs-on: windows-11-arm
150+
needs: ['build-windows']
149151

150152
permissions:
151153
contents: read

0 commit comments

Comments
 (0)