Skip to content

Bump faker from 39.0.0 to 40.1.0 #850

Bump faker from 39.0.0 to 40.1.0

Bump faker from 39.0.0 to 40.1.0 #850

Workflow file for this run

name: Lint
on:
pull_request:
types:
- "opened"
- "synchronize"
push:
branches:
- "main"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10" ]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Lint
run: |
uv run pre-commit run --all-files --show-diff-on-failure