Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ permissions:
contents: read

env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always

jobs:
Expand Down Expand Up @@ -46,7 +47,7 @@ jobs:
persist-credentials: false

- name: Install Rust
uses: dtolnay/rust-toolchain@stable # zizmor: ignore[unpinned-uses]
run: rustup show

- name: Cache dependencies
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
Expand Down Expand Up @@ -78,9 +79,7 @@ jobs:
persist-credentials: false

- name: Install Rust
uses: dtolnay/rust-toolchain@stable # zizmor: ignore[unpinned-uses]
with:
components: rustfmt, clippy
run: rustup show

- name: Cache dependencies
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
Expand Down Expand Up @@ -119,7 +118,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y zsh fish

- name: Install Rust
uses: dtolnay/rust-toolchain@stable # zizmor: ignore[unpinned-uses]
run: rustup show

- name: Install nextest
uses: taiki-e/install-action@5faf876256ccfc7ba64a4f87314c3457cc374b98 # v2.68.22
Expand All @@ -132,7 +131,8 @@ jobs:
run: |
$tmp = New-TemporaryFile | Rename-Item -NewName { $_ -replace 'tmp$', 'zip' } -PassThru
Invoke-WebRequest -OutFile $tmp https://get.nexte.st/latest/windows-arm
$outputDir = Join-Path $Env:CARGO_HOME "bin"
$cargoHome = if ($Env:CARGO_HOME) { $Env:CARGO_HOME } else { Join-Path $Env:USERPROFILE ".cargo" }
$outputDir = Join-Path $cargoHome "bin"
$tmp | Expand-Archive -DestinationPath $outputDir -Force
$tmp | Remove-Item
if: matrix.runs-on == 'windows-11-arm'
Expand Down