Skip to content

Commit

Permalink
run pre-commit checks automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
andreybavt committed Jan 2, 2024
1 parent e036caa commit bd478ef
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pre-commit-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Pre-commit checks
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

env:
GSK_DISABLE_ANALYTICS: true
SENTRY_ENABLED: false
defaults:
run:
shell: bash
jobs:
pre-commit:
name: Pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]

0 comments on commit bd478ef

Please sign in to comment.