Skip to content

chore(deps): bump tempfile from 3.26.0 to 3.27.0 #9

chore(deps): bump tempfile from 3.26.0 to 3.27.0

chore(deps): bump tempfile from 3.26.0 to 3.27.0 #9

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@v6
- 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