Skip to content

chore(deps-dev): bump setuptools from 69.5.1 to 70.1.1 #66

chore(deps-dev): bump setuptools from 69.5.1 to 70.1.1

chore(deps-dev): bump setuptools from 69.5.1 to 70.1.1 #66

Workflow file for this run

# Copyright (c) 2024 RapidStream Design Automation, Inc. and contributors.
# All rights reserved. The contributor(s) of this file has/have agreed to the
# RapidStream Contributor License Agreement.
name: Pre-Commit Checks
on:
- push
- pull_request
permissions:
contents: read
jobs:
Pre-Commit:
runs-on: ubuntu-latest
steps:
- name: Checkout myself
uses: actions/checkout@v4
- name: Run pre-commit
run: |
curl -fsSL https://install.python-poetry.org/ | python3.10 -
poetry install --with=dev
poetry run pre-commit run --all-files
shell: bash