Remove rustup uninstall #8
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: "Test Suite Sub" | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| clippy-subdir: | |
| name: "cargo clippy in subdir" | |
| runs-on: ubuntu-latest | |
| steps: | |
| # - run: rustup default none && rustup self uninstall -y | |
| - run: | | |
| rustc --version || true | |
| cargo --version || true | |
| rustup --version || true | |
| - uses: actions/checkout@v5 | |
| - uses: actions-rust-lang/setup-rust-toolchain@main | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| rust-src-dir: proj | |
| override: false | |
| - run: cargo clippy --all-targets --all-features --locked | |
| working-directory: proj |