We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beb7870 commit 6b399ccCopy full SHA for 6b399cc
.github/workflows/go.yml
@@ -12,8 +12,8 @@ jobs:
12
- name: Set up Go
13
uses: actions/setup-go@v4
14
with:
15
- go-version: "1.22.2"
16
- - name: Build
17
- run: go build -v ./...
+ go-version: "1.22.4"
18
- name: Test
19
- run: go test -v ./...
+ run: make test
+ - name: Build
+ run: make build
.gitignore
@@ -1,4 +1,5 @@
1
build/**
2
-**/lint.txt
+
3
*.tar.gz
4
.vscode/**
5
+lint.txt
cmd/rke2diff/main.go
@@ -201,7 +201,7 @@ func main() {
201
202
if _, ok := rows[component.Name]; !ok {
203
rows[component.Name] = table.Row{
204
- component.Name,
+ strings.ToLower(component.Name),
205
}
206
207
0 commit comments