chore(deps-dev): bump pylint from 3.1.0 to 3.2.5 #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |