File tree Expand file tree Collapse file tree 4 files changed +38
-10
lines changed Expand file tree Collapse file tree 4 files changed +38
-10
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ concurrency:
11
11
group : ${{ github.workflow }}-${{ github.ref }}
12
12
cancel-in-progress : true
13
13
14
- env :
15
- MISE_EXPERIMENTAL : true # required for go for now
16
-
17
14
jobs :
18
15
ci :
19
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -83,9 +83,10 @@ hooks = new {
83
83
}
84
84
["pre-push" ] {
85
85
steps = new {
86
- ["pch-no-commit-to-branch" ] {
87
- run = "no-commit-to-branch --branch=main"
88
- }
86
+ // FYI: PRs aren't required for this project
87
+ // ["pch-no-commit-to-branch"] {
88
+ // run = "no-commit-to-branch --branch=main"
89
+ // }
89
90
...pre_push_checks
90
91
...linters
91
92
}
Original file line number Diff line number Diff line change
1
+ [tools.go]
2
+ version = "1.24.2"
3
+ backend = "core:go"
4
+
5
+ [tools."go:github.com/Antonboom/testifylint"]
6
+ version = "1.6.1"
7
+ backend = "go:github.com/Antonboom/testifylint"
8
+
9
+ [tools."go:github.com/rhysd/actionlint/cmd/actionlint"]
10
+ version = "1.7.7"
11
+ backend = "go:github.com/rhysd/actionlint/cmd/actionlint"
12
+
13
+ [tools."pipx:commitizen"]
14
+ version = "4.5.0"
15
+ backend = "pipx:commitizen"
16
+
17
+ [tools."pipx:pre-commit-hooks"]
18
+ version = "5.0.0"
19
+ backend = "pipx:pre-commit-hooks"
20
+
21
+ [tools."pipx:sqlfluff"]
22
+ version = "3.3.1"
23
+ backend = "pipx:sqlfluff"
24
+
25
+ [tools."pipx:toml-sort"]
26
+ version = "0.24.2"
27
+ backend = "pipx:toml-sort"
Original file line number Diff line number Diff line change
1
+ [settings ]
2
+ experimental = true # required for go for now
3
+
1
4
[tasks .ci ]
2
5
depends = [" test" ]
3
6
description = " Use in GitHub Actions"
@@ -35,10 +38,10 @@ description = "Update dependencies"
35
38
run = [" go get -u ./..." , " go mod tidy" ]
36
39
37
40
[tools ] # Upgrade with `mise upgrade --bump`
38
- go = " 1.24.2 "
39
- "go:github.com/Antonboom/testifylint" = " 1.6.1 "
40
- "go:github.com/rhysd/actionlint/cmd/actionlint" = " 1.7.7 "
41
+ go = " latest "
42
+ "go:github.com/Antonboom/testifylint" = " latest "
43
+ "go:github.com/rhysd/actionlint/cmd/actionlint" = " latest "
41
44
"pipx:commitizen" = " latest"
42
45
"pipx:pre-commit-hooks" = " latest"
43
46
"pipx:sqlfluff" = " latest"
44
- "pipx:toml-sort" = " 0.24.2 "
47
+ "pipx:toml-sort" = " latest "
You can’t perform that action at this time.
0 commit comments