Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.24", "1.25"]
go: ["1.25", "1.26"]
steps:
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c #v6.1.0
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 #v6.2.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirmed hash.

with:
go-version: ${{ matrix.go }}
- name: Check out source
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 #v6.0.0
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirmed hash.

- name: Build
run: go build ./...
- name: Install Linters
run: "curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.6.2"
run: "curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v2.9.0"
- name: Test and Lint
run: ./run_tests.sh
14 changes: 10 additions & 4 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,16 @@ linters:
presets:
- comments
- std-error-handling
rules:
# Ignore revive linter complaining about the name of the "types" package.
- path: types/*
text: 'var-naming: avoid meaningless package names'
settings:
revive:
rules:
- name: var-naming
arguments:
- [""] # AllowList
- [""] # DenyList
# Ignore revive linter complaining about the names of packages.
- - skip-package-name-checks: true
skip-package-name-collision-with-go-std: true
formatters:
enable:
- gofmt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ VSP will add the ticket to a pool of always-online voting wallets.

## Implementation

vspd is built and tested on go 1.24 and 1.25, making use of the following
vspd is built and tested on go 1.25 and 1.26, making use of the following
libraries:

- [gin-gonic/gin](https://github.com/gin-gonic/gin) webserver.
Expand Down
Loading