Skip to content

Commit

Permalink
To lower (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejoh authored Sep 20, 2024
1 parent beb7870 commit 6b399cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.2"
- name: Build
run: go build -v ./...
go-version: "1.22.4"
- name: Test
run: go test -v ./...
run: make test
- name: Build
run: make build
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
build/**
**/lint.txt

*.tar.gz
.vscode/**
lint.txt
2 changes: 1 addition & 1 deletion cmd/rke2diff/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func main() {

if _, ok := rows[component.Name]; !ok {
rows[component.Name] = table.Row{
component.Name,
strings.ToLower(component.Name),
}
}

Expand Down

0 comments on commit 6b399cc

Please sign in to comment.