fix: remove unused vllm kwargs from generator interface #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: check formatting | |
run: make format | |
- name: run linter | |
run: make ruff | |
- name: run type checker | |
run: make pyright | |
- name: build docs | |
run: make docs |