chore(gha): parallelize check steps

This commit is contained in:
Yuki Okushi 2026-06-28 19:19:16 +09:00
parent 67490f9e75
commit cb11d2c993
2 changed files with 10 additions and 8 deletions

View File

@ -57,11 +57,12 @@ jobs:
with: with:
tool: just,cargo-hack,cargo-nextest,cargo-ci-cache-clean tool: just,cargo-hack,cargo-nextest,cargo-ci-cache-clean
- name: check minimal - parallel:
run: just check-min - name: check minimal
run: just check-min
- name: check default - name: check default
run: just check-default run: just check-default
- name: tests - name: tests
timeout-minutes: 60 timeout-minutes: 60

View File

@ -76,11 +76,12 @@ jobs:
if: matrix.version.name == 'msrv' if: matrix.version.name == 'msrv'
run: just downgrade-for-msrv run: just downgrade-for-msrv
- name: check minimal - parallel:
run: just check-min - name: check minimal
run: just check-min
- name: check default - name: check default
run: just check-default run: just check-default
- name: tests - name: tests
timeout-minutes: 30 timeout-minutes: 30