We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9596c9 commit cc83c15Copy full SHA for cc83c15
.github/workflows/format.yml
@@ -0,0 +1,28 @@
1
+name: format
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
+ branches:
8
+ - humble
9
+ - jazzy
10
+ - '*-devel'
11
+ pull_request:
12
13
14
+ workflow_dispatch:
15
16
+# Do not run multiple jobs for the same branch
17
+concurrency:
18
+ group: ${{ github.workflow }}-${{ github.ref }}
19
+ cancel-in-progress: true
20
21
+jobs:
22
+ pre-commit:
23
+ name: pre-commit
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - uses: actions/checkout@v4
27
+ - uses: actions/setup-python@v5
28
+ - uses: pre-commit/action@v3.0.1
0 commit comments