We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 668a495 commit c2112e2Copy full SHA for c2112e2
.github/workflows/build.yaml
@@ -21,8 +21,12 @@ jobs:
21
run: |
22
go install golang.org/x/tools/cmd/goimports@latest
23
go install honnef.co/go/tools/cmd/staticcheck@latest
24
+ go install github.com/a-h/templ/cmd/templ@latest
25
export PATH="$HOME/go/bin:$PATH"
26
27
+ - name: Run templ
28
+ run: templ generate
29
+
30
- name: Run pre-commit
31
uses: pre-commit/action@v3.0.1
32
@@ -38,6 +42,12 @@ jobs:
38
42
with:
39
43
go-version-file: "go.mod"
40
44
45
+ - name: templ generate
46
+ run: |
47
48
+ export PATH="$HOME/go/bin:$PATH"
49
+ templ generate
50
41
51
- run: go build ./cmd/mineshspc
52
53
- uses: actions/upload-artifact@v4
0 commit comments