Skip to content

Merge pull request #3 from demoray/add-vacuum-to-shrink-to #18

Merge pull request #3 from demoray/add-vacuum-to-shrink-to

Merge pull request #3 from demoray/add-vacuum-to-shrink-to #18

Workflow file for this run

name: Cargo Check
on:
push:
pull_request:
workflow_dispatch:
workflow_call:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache Packages
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --check
- name: Check build
run: cargo clippy
- name: Run tests
run: cargo test