Skip to content

chore(deps): bump rusqlite from 0.39.0 to 0.40.0 (#47) #147

chore(deps): bump rusqlite from 0.39.0 to 0.40.0 (#47)

chore(deps): bump rusqlite from 0.39.0 to 0.40.0 (#47) #147

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
rust:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Cache Rust build artifacts
uses: Swatinem/rust-cache@v2.9.1
- name: Install Rust components
run: rustup component add rustfmt clippy
- name: Check formatting
run: cargo fmt --check
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all-features