Skip to content

Commit

Permalink
Merge pull request #378 from VictorAvelar/chore/fix-goreleaser-config…
Browse files Browse the repository at this point in the history
…-to-v2

chore(devcontainer): fix config files
  • Loading branch information
VictorAvelar authored Jun 15, 2024
2 parents c15421c + 704bd47 commit cbe6c44
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@
"install-zsh-plugins": "git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting && git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions",
"modules": "go mod download",
"taskfile": "go install github.com/go-task/task/v3/cmd/task@latest",
"gomarkdoc": "go install github.com/princjef/gomarkdoc/cmd/gomarkdoc@latest"
"gomarkdoc": "go install github.com/princjef/gomarkdoc/cmd/gomarkdoc@latest",
"goreleaser": "go install github.com/goreleaser/goreleaser/v2@latest"
},
"remoteUser": "root",
"containerUser": "root",
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@

# Wiki pages
wiki

dist/
8 changes: 5 additions & 3 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ run:
timeout: 20s
issues-exit-code: 2
tests: false
skip-dirs-use-default: true
modules-download-mode: readonly
go: "1.17"
go: "1.22"

output:
format: tab
formats:
- path: stdout
format: tab
- format: colored-line-number
sort-results: true

linters:
Expand Down
9 changes: 5 additions & 4 deletions .goreleaser.yml → .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# This is an example goreleaser.yaml file with some sane defaults.
project_name: mollie-api-golang
build:
skip: true
version: 2

builds:
- skip: true

changelog:
use: github
sort: asc
Expand Down

0 comments on commit cbe6c44

Please sign in to comment.