rust-cache/.github/workflows/install.yml

30 lines
720 B
YAML
Raw Normal View History

2022-07-09 23:17:14 +08:00
name: install
on: [push, pull_request]
jobs:
install:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Test `cargo install` on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
CARGO_TERM_COLOR: always
steps:
2022-07-16 18:38:38 +08:00
- uses: actions/checkout@v3
2022-07-09 23:17:14 +08:00
2022-08-09 20:23:59 +08:00
# When rustup is updated, it tries to replace its binary, which on Windows is somehow locked.
# This can result in the CI failure, see: https://github.com/rust-lang/rustup/issues/3029
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal
2022-07-09 23:17:14 +08:00
- uses: ./
- run: cargo install cargo-deny --locked