Skip to content

chore(deps): bump whoami from 1.4.1 to 1.5.1 #353

chore(deps): bump whoami from 1.4.1 to 1.5.1

chore(deps): bump whoami from 1.4.1 to 1.5.1 #353

Workflow file for this run

name: ci
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Setup Cache
uses: Swatinem/rust-cache@v2
- name: Build crate
run: cargo build
- name: Run tests
run: cargo test
- name: Check formatting
run: cargo fmt --all --check
- name: Run clippy
run: cargo clippy --all -- --deny clippy::pedantic