Skip to content

Create Command effects and BannerAlert effects #54

Create Command effects and BannerAlert effects

Create Command effects and BannerAlert effects #54

Workflow file for this run

name: Pre-commit
on:
merge_group:
pull_request:
branches:
- "**"
jobs:
pre-commit:
name: Enforce Pre-commit Checks
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Determine head and base sha
id: set-sha
uses: ./.github/actions/set-sha
- uses: ./.github/actions/install-python-and-poetry
- name: Run the pre-commit hooks
uses: pre-commit/action@v3.0.0
with:
extra_args: >-
--all-files
--source ${{ steps.set-sha.outputs.base-sha }}
--origin ${{ steps.set-sha.outputs.base-sha }}
--show-diff-on-failure
--color=always