Skip to content

chore(deps-dev): bump wheel from 0.40.0 to 0.41.0 #628

chore(deps-dev): bump wheel from 0.40.0 to 0.41.0

chore(deps-dev): bump wheel from 0.40.0 to 0.41.0 #628

Workflow file for this run

name: Lint
on:
pull_request_target:
branches:
- master
jobs:
matrix:
runs-on: ubuntu-latest
name: Run ${{ matrix.checks }}
strategy:
matrix:
checks:
- pyupgrade
- black
- codespell
- check-executables-have-shebangs
- check-json
- requirements-txt-fixer
- check-ast
- mixed-line-ending
- trailing-whitespace
- check-yaml
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Set up Python
uses: actions/setup-python@v4
id: python
with:
python-version: "3.x"
- name: Install pre-commit
run: |
python3 -m pip install pre-commit
pre-commit install-hooks --config .github/pre-commit-config.yaml
- name: Run the check (${{ matrix.checks }})
run: pre-commit run --hook-stage manual ${{ matrix.checks }} --all-files --config .github/pre-commit-config.yaml
- name: Commit Changes
if: failure()
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "fix: ${{ matrix.checks }} action"