Skip to content

Commit cc83c15

Browse files
committed
precommit fix to workflow
1 parent b9596c9 commit cc83c15

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/format.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
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

Comments
 (0)