Skip to content

Commit 81554bc

Browse files
committed
clone test data for tests that are using static data from the files
1 parent 364c5ad commit 81554bc

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/python.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ jobs:
4141
steps:
4242
- uses: actions/checkout@v4
4343

44+
- name: Clone test data
45+
run: ./clone-test-data.sh
46+
4447
- uses: actions/setup-python@v5
4548
with:
4649
python-version: 3.x
@@ -117,6 +120,9 @@ jobs:
117120
steps:
118121
- uses: actions/checkout@v4
119122

123+
- name: Clone test data
124+
run: ./clone-test-data.sh
125+
120126
- uses: actions/setup-python@v5
121127
with:
122128
python-version: 3.x
@@ -180,6 +186,9 @@ jobs:
180186
steps:
181187
- uses: actions/checkout@v4
182188

189+
- name: Clone test data
190+
run: ./clone-test-data.sh
191+
183192
- uses: actions/setup-python@v5
184193
with:
185194
python-version: 3.x
@@ -219,6 +228,9 @@ jobs:
219228
steps:
220229
- uses: actions/checkout@v4
221230

231+
- name: Clone test data
232+
run: ./clone-test-data.sh
233+
222234
- uses: actions/setup-python@v5
223235
with:
224236
python-version: 3.x

.github/workflows/ruby.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525

26+
- name: Clone test data
27+
run: ./clone-test-data.sh
28+
2629
- name: Set up Ruby & Rust
2730
uses: oxidize-rb/actions/setup-ruby-and-rust@v1
2831
with:

0 commit comments

Comments
 (0)