pull env every time
Some checks failed
Cargo Build & Test / Rust project - latest (nightly) (push) Failing after 54s

This commit is contained in:
oliver 2024-07-27 15:06:42 -06:00
parent 369553f7c6
commit 460e832cbf

View File

@ -18,7 +18,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y
- run: ./home/$(whoami)/.local/share/cargo/bin/rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: ./home/$(whoami)/.local/share/cargo/bin/cargo build --verbose
- run: ./home/$(whoami)/.local/share/cargo/bin/cargo build test --verbose
- run: . "$HOME/.cargo/env"; rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: . "$HOME/.cargo/env"; cargo build --verbose
- run: . "$HOME/.cargo/env"; cargo build test --verbose