Add reasoning/thinking tokens support to traces #2208
Workflow file for this run
This file contains hidden or 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: Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
run-linter: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v5 | |
- name: Install the latest version of uv and set the python version to 3.13 | |
uses: astral-sh/setup-uv@v6 | |
with: | |
python-version: 3.13 | |
activate-environment: true | |
- name: Install pre-commit | |
run: uv sync --group lint | |
- uses: actions/cache@v4 | |
with: | |
path: .mypy_cache | |
key: ${{ runner.os }}-mypy-${{ hashFiles('pyproject.toml') }} | |
restore-keys: | | |
${{ runner.os }}-mypy- | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pre-commit- | |
- name: pre-commit | |
run: uv run pre-commit run --all-files --verbose |