Skip to content

refactor: simplify binary blob check and streamline default implement… #3

refactor: simplify binary blob check and streamline default implement…

refactor: simplify binary blob check and streamline default implement… #3

name: GitDatabase CI
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: Cargo test
run: cargo test --workspace