We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cdf75b commit 90557d9Copy full SHA for 90557d9
.github/workflows/golangci-lint.yaml
@@ -14,6 +14,10 @@ jobs:
14
- uses: WillAbides/setup-go-faster@v1
15
with:
16
go-version: '1.24'
17
+ - name: touching cert
18
+ run: touch cert.pem
19
+ - name: touching key
20
+ run: touch key.pem
21
- name: golangci-lint
22
uses: golangci/golangci-lint-action@v8
23
main.go
@@ -11,11 +11,9 @@ import (
11
//go:embed public/*
12
var embeddedFiles embed.FS
13
-//nolint:typecheck
//go:embed cert.pem
var cert []byte
//go:embed key.pem
var key []byte
0 commit comments