Skip to content

Commit 1c1f0fa

Browse files
committed
Extract build task into separate step.
1 parent 6275702 commit 1c1f0fa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test-external.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,20 @@ jobs:
3333
ruby-version: ${{matrix.ruby}}
3434
bundler-cache: true
3535

36+
- name: Build extensions
37+
timeout-minutes: 10
38+
run: bundle exec bake build
39+
3640
- name: Run tests
3741
timeout-minutes: 10
38-
run: bundle exec bake build test:external
42+
run: bundle exec bake test:external
3943

4044
- name: Run tests (worker pool)
4145
if: ${{matrix.os == 'ubuntu' && matrix.ruby == 'head'}}
4246
env:
4347
ASYNC_SCHEDULER_WORKER_POOL: true
4448
timeout-minutes: 10
45-
run: bundle exec bake build test:external
49+
run: bundle exec bake test:external
4650

4751
# - name: Run tests (pure Ruby)
4852
# env:

0 commit comments

Comments
 (0)