File tree Expand file tree Collapse file tree 3 files changed +64
-0
lines changed Expand file tree Collapse file tree 3 files changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ # GitHub Actions
4
+ - package-ecosystem : " github-actions"
5
+ directory : " /"
6
+ schedule :
7
+ interval : " weekly"
8
+ groups :
9
+ actions :
10
+ patterns :
11
+ - " *"
Original file line number Diff line number Diff line change
1
+ name : Tests
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+ pull_request :
7
+
8
+ concurrency :
9
+ group : test-${{ github.ref }}
10
+ cancel-in-progress : true
11
+
12
+ defaults :
13
+ run :
14
+ shell : bash -eux {0}
15
+
16
+ jobs :
17
+ pre_commit :
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - uses : actions/setup-python@v5
22
+ -
uses :
pre-commit/[email protected]
23
+ with :
24
+ extra_args : --all-files --hook-stage manual
Original file line number Diff line number Diff line change
1
+
2
+ repos :
3
+ - repo : https://github.com/pre-commit/pre-commit-hooks
4
+ rev : v4.4.0
5
+ hooks :
6
+ - id : check-added-large-files
7
+ - id : check-case-conflict
8
+ - id : check-yaml
9
+ - id : trailing-whitespace
10
+
11
+ # We use the Python version instead of the original version which seems to require Docker
12
+ # https://github.com/koalaman/shellcheck-precommit
13
+ - repo : https://github.com/shellcheck-py/shellcheck-py
14
+ rev : v0.9.0.6
15
+ hooks :
16
+ - id : shellcheck
17
+ name : shellcheck
18
+ args : ["--severity=warning"]
19
+ stages : [manual]
20
+
21
+ - repo : https://github.com/sirosen/check-jsonschema
22
+ rev : 0.28.3
23
+ hooks :
24
+ - id : check-github-actions
25
+ files : >
26
+ (?x)^(
27
+ (.+/)?action\.(yml|yaml)
28
+ )$
29
+ - id : check-dependabot
You can’t perform that action at this time.
0 commit comments