Skip to content

Commit

Permalink
feat: adding .pre-commit action
Browse files Browse the repository at this point in the history
  • Loading branch information
0xisk committed Mar 19, 2024
1 parent bba71da commit 7a4c15f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 46 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/build-cashe.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: pre-commit

on:
pull_request:
push:
branches: [main]

jobs:
pre-commit:
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4

- uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files

0 comments on commit 7a4c15f

Please sign in to comment.