Skip to content

chore(deps): update tower to 0.5 and move tower_compat to salvo_extra #2252

chore(deps): update tower to 0.5 and move tower_compat to salvo_extra

chore(deps): update tower to 0.5 and move tower_compat to salvo_extra #2252

Workflow file for this run

name: ci-windows
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
jobs:
test:
strategy:
fail-fast: false
matrix:
version:
- stable
# - nightly
target:
- x86_64-pc-windows-msvc
# - x86_64-pc-windows-gnu
# - i686-pc-windows-msvc
name: Check ${{ matrix.version }} - ${{ matrix.target }}
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.version }}
components: rustfmt, clippy
- name: Install openssl
run: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x64-windows-static-md
- name: check build
run: cargo check --all --bins --examples --tests
- name: check release build
run: cargo check --all --bins --examples --tests --release
- name: Cargo test
timeout-minutes: 40
run: cargo test --all --all-features --no-fail-fast -- --nocapture