diff --git a/.github/renovate.json b/.github/renovate.json index e46316f..66f4a27 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,6 +1,4 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "github>ivuorinen/renovate-config" - ] + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>ivuorinen/renovate-config"] } diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2872db..6b71f1c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: - name: Setup Go uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 with: - go-version-file: 'go.mod' + go-version-file: "go.mod" - name: Run Go Tests shell: bash diff --git a/.gitignore b/.gitignore index a4c0bc8..f60e9f6 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ logs .DS_Store bin/* !bin/.gitkeep +megalinter-reports diff --git a/Justfile b/Justfile index 3095e4c..49aa728 100644 --- a/Justfile +++ b/Justfile @@ -7,6 +7,11 @@ src := "./cmd/main.go" default: just build +# Lint with megalinter +lint: + echo "Linting..." + npx --yes mega-linter-runner + # Build the Go binary build: echo "Building {{app_name}}..."