Skip to content

chore(deps): bump rustc-hash from 2.1.2 to 2.1.3 #66

chore(deps): bump rustc-hash from 2.1.2 to 2.1.3

chore(deps): bump rustc-hash from 2.1.2 to 2.1.3 #66

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Check, Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Check formatting
run: make fmt-check
- name: Lint
run: make lint
- name: Run tests
run: make test
- name: Security audit
run: cargo install cargo-audit --quiet && cargo audit