Skip to content

Bump langsmith from 0.7.36 to 0.7.37 in the python-dependencies group #10

Bump langsmith from 0.7.36 to 0.7.37 in the python-dependencies group

Bump langsmith from 0.7.36 to 0.7.37 in the python-dependencies group #10

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Run lint suite
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
cache: pip
cache-dependency-path: requirements.txt
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: "22"
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install just
uses: extractions/setup-just@v4
- name: Install dependencies
run: just install
- name: Install pre-commit hooks
run: pre-commit install --install-hooks
- name: Run lint
run: just lint