Skip to content

Bump the all-dependencies-cargo group with 8 updates #326

Bump the all-dependencies-cargo group with 8 updates

Bump the all-dependencies-cargo group with 8 updates #326

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache folders
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check formatting, run clippy and test
run: cargo fmt --all -- --check && cargo clippy -- -D warnings && cargo test