Skip to content

feat: limit cache size by configuration #10

feat: limit cache size by configuration

feat: limit cache size by configuration #10

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Format
run: cargo fmt --all --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test
typo:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Spell Check
uses: crate-ci/typos@master
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy (fail on warnings)
run: cargo clippy -- -D warnings
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check compilation
run: cargo check --verbose
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Documentation
run: cargo doc --no-deps