Skip to content

Commit 90557d9

Browse files
committed
Trying to hack my way around
1 parent 4cdf75b commit 90557d9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/golangci-lint.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
- uses: WillAbides/setup-go-faster@v1
1515
with:
1616
go-version: '1.24'
17+
- name: touching cert
18+
run: touch cert.pem
19+
- name: touching key
20+
run: touch key.pem
1721
- name: golangci-lint
1822
uses: golangci/golangci-lint-action@v8
1923
with:

main.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ import (
1111
//go:embed public/*
1212
var embeddedFiles embed.FS
1313

14-
//nolint:typecheck
1514
//go:embed cert.pem
1615
var cert []byte
1716

18-
//nolint:typecheck
1917
//go:embed key.pem
2018
var key []byte
2119

0 commit comments

Comments
 (0)