Skip to content

โฌ† [pre-commit.ci] pre-commit autoupdate #88

โฌ† [pre-commit.ci] pre-commit autoupdate

โฌ† [pre-commit.ci] pre-commit autoupdate #88

Workflow file for this run

name: pre-commit
on:
pull_request:
branches: [master]
types: [opened, synchronize, closed]
push:
branches: [master]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v3
# https://github.com/actions/setup-python
- uses: actions/setup-python@v4
with:
python-version: '3.7'
# https://github.com/marketplace/actions/pre-commit
# https://github.com/cloudposse/github-action-pre-commit
- uses: pre-commit/action@v3.0.0
with:
extra_args: --color=always --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}
# https://github.com/pre-commit/action/issues/7