Skip to content

style: simplify scroll-down index clamping #51

style: simplify scroll-down index clamping

style: simplify scroll-down index clamping #51

Workflow file for this run

---
name: CI
on:
pull_request:
push:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy rustfmt
- name: Linting
run: |
cargo clippy --workspace --all-features -- -D warnings
cargo fmt --all -- --check
- name: Run tests
run: cargo test --workspace
- name: Build
run: cargo build --release