-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08987f1
commit b77c1b5
Showing
2 changed files
with
2 additions
and
12 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,21 +74,16 @@ jobs: | |
overwrite: true | ||
|
||
tests-parallel: | ||
name: Run Tests (Parallel) | ||
name: Run Tests - Rust (Parallel) | ||
runs-on: ubuntu-20.04 | ||
needs: prepare-tests | ||
steps: | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
cache: false | ||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
- uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected] | ||
- name: Install Package Dependencies | ||
run: make install | ||
- name: Download Nextest Archives | ||
uses: actions/download-artifact@v4 | ||
with: | ||
|
@@ -98,21 +93,16 @@ jobs: | |
run: cargo nextest run --archive-file nextest-archive.tar.zst --retries 2 | ||
|
||
tests-serial: | ||
name: Run Tests (Serial) | ||
name: Run Tests - Rust (Serial) | ||
runs-on: ubuntu-20.04 | ||
needs: prepare-tests | ||
steps: | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
cache: false | ||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
- uses: taiki-e/install-action@v2 | ||
with: | ||
tool: [email protected] | ||
- name: Install Package Dependencies | ||
run: make install | ||
- name: Download Nextest Archives | ||
uses: actions/download-artifact@v4 | ||
with: | ||
|