XanderJC commited on
Commit
bfbcf49
·
1 Parent(s): 406f126
Files changed (1) hide show
  1. .github/workflows/pre-commit.yaml +13 -0
.github/workflows/pre-commit.yaml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: 🔍 Code Quality Checks
2
+
3
+ on: [pull_request]
4
+
5
+ jobs:
6
+ pre-commit:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-python@v3
11
+ - uses: pre-commit/[email protected]
12
+ with:
13
+ extra_args: --all-files