We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f85ffde commit eb3f6f9Copy full SHA for eb3f6f9
1 file changed
.github/workflows/pr-checks.yml
@@ -0,0 +1,21 @@
1
+---
2
+name: Pull Request validation
3
+
4
+on:
5
+ - pull_request
6
7
+jobs:
8
+ pre-commit:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout code
12
+ id: checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Set up Python
16
+ id: setup-python
17
+ uses: actions/setup-python@v5
18
19
+ - name: Run pre-commit checks
20
+ id: pre-commit
21
+ uses: cloudposse/github-action-pre-commit@v4.0.0
0 commit comments