diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 324085e..215d4d0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 diff --git a/.gitignore b/.gitignore index 2e1f0da..bc49f38 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ build/** -**/lint.txt + *.tar.gz .vscode/** +lint.txt \ No newline at end of file diff --git a/cmd/rke2diff/main.go b/cmd/rke2diff/main.go index ecad06f..25344c1 100644 --- a/cmd/rke2diff/main.go +++ b/cmd/rke2diff/main.go @@ -201,7 +201,7 @@ func main() { if _, ok := rows[component.Name]; !ok { rows[component.Name] = table.Row{ - component.Name, + strings.ToLower(component.Name), } }