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 5d385bb commit 06576b1Copy full SHA for 06576b1
1 file changed
.github/workflows/code-format-check.yml
@@ -0,0 +1,23 @@
1
+name: Code-Format-Check
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 21 * * *'
6
+ push:
7
+ branches: [ "main" ]
8
+ pull_request:
9
10
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
+ pre-commit:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: actions/setup-python@v5
21
+ with:
22
+ python-version: '3.11'
23
+ - uses: pre-commit/action@v3.0.1
0 commit comments