Skip to content

fix(deps): update dependency setuptools to v75.5.0 #2634

fix(deps): update dependency setuptools to v75.5.0

fix(deps): update dependency setuptools to v75.5.0 #2634

Workflow file for this run

---
name: lint and other checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Python
id: setup-python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a # v1
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run pre-commit
run: |
poetry run pre-commit run --all-files