Merge pull request #1281 from mbround18/renovate/vite-6.x #2575
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: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
env: | ||
NAME: "Rust Test" | ||
CARGO_TERM_COLOR: always | ||
jobs: | ||
cancel-previous: | ||
name: Cancel Previous | ||
runs-on: ubuntu-latest | ||
steps: - unlabeled | ||
- uses: styfle/cancel-workflow-action@0.12.1 | ||
with: | ||
access_token: ${{ github.token }} | ||
build-nd-test: | ||
name: Build & Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- name: Setup | Rust | Nightly | ||
uses: ATiltedTree/setup-rust@v1 | ||
with: | ||
rust-version: nightly | ||
components: clippy rustfmt | ||
- uses: davidB/rust-cargo-make@v1 | ||
name: Install Cargo Make | ||
- uses: actions/cache@v4 | ||
name: Cache Cargo Files | ||
with: | ||
path: | | ||
target/release | ||
target/debug | ||
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | ||
- name: Build | ||
run: cargo build --verbose | ||
- name: Run tests | ||
run: cargo test --verbose | ||
- name: Lint | ||
run: cargo fmt -- --check |