Skip to content

Bump ip from 2.0.0 to 2.0.1 in /client (#82) #260

Bump ip from 2.0.0 to 2.0.1 in /client (#82)

Bump ip from 2.0.0 to 2.0.1 in /client (#82) #260

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12.1"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pre-commit
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure