Skip to content

feat(max-tokens): adding max-tokens argument and update docs (extra: fix clean last line) #44

feat(max-tokens): adding max-tokens argument and update docs (extra: fix clean last line)

feat(max-tokens): adding max-tokens argument and update docs (extra: fix clean last line) #44

Workflow file for this run

name: Rust Linter and Formatter
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test