deps: bump salvo from 0.89.3 to 0.92.0 #20
Workflow file for this run
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: ci-windows | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - "**.rs" | |
| - "**/Cargo.toml" | |
| - ".github/workflows/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "**.rs" | |
| - "**/Cargo.toml" | |
| - ".github/workflows/**" | |
| jobs: | |
| test: | |
| name: Test (stable) - x86_64-pc-windows-msvc | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Check build | |
| run: cargo check --all-targets | |
| - name: Check release build | |
| run: cargo check --all-targets --release | |
| - name: Run tests | |
| timeout-minutes: 20 | |
| run: cargo test --no-fail-fast -- --nocapture | |
| build: | |
| name: Build release binary | |
| runs-on: windows-latest | |
| needs: [test] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Build release | |
| run: cargo build --release | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: hpip-windows-x86_64 | |
| path: target/release/hpip.exe |