fix(v0.21.0): avoid redundant timeline track reselection #39
This file contains hidden or 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
| name: windows-smoke | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Build nf-shell | |
| run: cargo build -p nf-shell --release | |
| - name: Smoke check | |
| shell: pwsh | |
| run: | | |
| $exe = "target/release/nf-shell.exe" | |
| if (!(Test-Path $exe)) { throw "build failed" } | |
| $size = (Get-Item $exe).Length / 1MB | |
| Write-Host ("nf-shell.exe = {0:N2} MB" -f $size) | |
| if ($size -gt 8) { throw "binary too large (>8MB)" } |