this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(rust): expand Rust action

+19 -2
+19 -2
.github/workflows/rust.yml
··· 10 10 CARGO_TERM_COLOR: always 11 11 12 12 jobs: 13 + # Build/Test/Check everything Rust 13 14 build: 14 15 runs-on: ubuntu-latest 15 16 16 17 steps: 17 18 - uses: actions/checkout@v3 19 + 20 + - name: Install Rust 21 + uses: dtolnay/rust-toolchain@stable 22 + with: 23 + components: clippy, rustfmt 24 + 25 + - name: Setup Cache 26 + uses: Swatinem/rust-cache@v2 27 + 18 28 - name: Build 19 - run: cargo build --verbose 29 + run: cargo build 30 + 20 31 - name: Run tests 21 - run: cargo test --verbose 32 + run: cargo test 33 + 34 + - name: Format 35 + run: cargo fmt -- --check 36 + 37 + - name: Run clippy 38 + run: cargo clippy -- -D warnings