fix ci workflow 11
Some checks failed
Verify Latest Dependencies / Verify Latest Dependencies (push) Failing after 3s
build and test / wxbox - latest (push) Failing after 2s

This commit is contained in:
core 2025-03-04 21:11:58 -05:00
parent 12f5c12849
commit f88d6482bd
Signed by: core
GPG key ID: FDBF740DADDCEECF
2 changed files with 11 additions and 11 deletions

View file

@ -19,8 +19,7 @@ jobs:
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s - -y - uses: dtolnay/rust-toolchain@stable
- run: source "$HOME/.cargo/env" && rustup update stable && rustup default stable - run: cargo update --verbose
- run: source "$HOME/.cargo/env" && cargo update --verbose - run: cargo build --verbose
- run: source "$HOME/.cargo/env" && cargo build --verbose - run: cargo test --verbose
- run: source "$HOME/.cargo/env" && cargo test --verbose

View file

@ -21,9 +21,10 @@ jobs:
- nightly - nightly
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s - -y - uses: dtolnay/rust-toolchain@master
- run: source "$HOME/.cargo/env" && rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} with:
- run: source "$HOME/.cargo/env" && cargo build toolchain: ${{ matrix.toolchain }}
- run: source "$HOME/.cargo/env" && cargo test - run: cargo build
- run: source "$HOME/.cargo/env" && cargo clippy - run: cargo test
- run: source "$HOME/.cargo/env" && cargo fmt --check - run: cargo clippy
- run: cargo fmt --check