change install directory #9
This file contains 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: Rust | |
on: [push, pull_request] | |
jobs: | |
clippy: | |
name: Format & Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Deps | |
run: | | |
rustup toolchain install stable nightly | |
rustup default stable | |
rustup component add rustfmt clippy | |
rustup component add rustfmt clippy rust-src --toolchain nightly | |
- name: cargo clippy | |
run: | | |
for t in pixie-*; do | |
pushd $t | |
cargo fmt --check | |
cargo clippy | |
popd | |
done |