Skip to content

Commit 6b399cc

Browse files
authored
To lower (#10)
1 parent beb7870 commit 6b399cc

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/go.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
- name: Set up Go
1313
uses: actions/setup-go@v4
1414
with:
15-
go-version: "1.22.2"
16-
- name: Build
17-
run: go build -v ./...
15+
go-version: "1.22.4"
1816
- name: Test
19-
run: go test -v ./...
17+
run: make test
18+
- name: Build
19+
run: make build

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
build/**
2-
**/lint.txt
2+
33
*.tar.gz
44
.vscode/**
5+
lint.txt

cmd/rke2diff/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ func main() {
201201

202202
if _, ok := rows[component.Name]; !ok {
203203
rows[component.Name] = table.Row{
204-
component.Name,
204+
strings.ToLower(component.Name),
205205
}
206206
}
207207

0 commit comments

Comments
 (0)