2024-07-19 17:22:21 +01:00
|
|
|
name: Rust Checks
|
2024-07-13 22:58:12 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
2024-07-19 05:30:57 +01:00
|
|
|
cargo_check:
|
2024-07-13 22:58:12 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-07-19 17:22:21 +01:00
|
|
|
- name: Checkout sources
|
2024-07-13 22:58:12 +01:00
|
|
|
- uses: actions/checkout@v4
|
2024-07-19 17:30:46 +01:00
|
|
|
|
2024-07-18 22:03:27 +01:00
|
|
|
- name: Cache Cargo registry
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/registry
|
|
|
|
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-cargo-registry-
|
2024-07-19 17:30:46 +01:00
|
|
|
|
2024-07-18 22:03:27 +01:00
|
|
|
- name: Cache Cargo index
|
|
|
|
uses: actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/git
|
|
|
|
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-cargo-index-
|
2024-07-19 17:30:46 +01:00
|
|
|
|
2024-07-13 23:04:40 +01:00
|
|
|
- name: Install Rust
|
2024-07-19 17:22:21 +01:00
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2024-07-19 17:30:46 +01:00
|
|
|
|
2024-07-13 22:58:12 +01:00
|
|
|
- name: Build
|
2024-07-19 17:22:21 +01:00
|
|
|
run: cargo check
|
|
|
|
|
|
|
|
lints:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
- uses: actions/checkout@v4
|
2024-07-19 17:30:46 +01:00
|
|
|
|
2024-07-19 17:22:21 +01:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
2024-07-19 17:30:46 +01:00
|
|
|
|
2024-07-19 17:22:21 +01:00
|
|
|
- name: Run cargo fmt
|
2024-07-19 17:25:59 +01:00
|
|
|
run: cargo fmt --all --check
|
2024-07-19 17:30:46 +01:00
|
|
|
|
2024-07-19 17:22:21 +01:00
|
|
|
- name: Run cargo clippy
|
|
|
|
run: cargo clippy
|