Skip to content

Commit

Permalink
Add estimation scales to poker planning (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenWeathers authored Sep 8, 2024
1 parent 02fda66 commit 63e98c9
Show file tree
Hide file tree
Showing 27 changed files with 5,233 additions and 2,246 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
node-version: [ "20.12.0" ]
go-version: [ "1.22" ]
go-version: [ "1.23" ]
db-host:
- 127.0.0.1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
DOCKER_CLI_EXPERIMENTAL: "enabled"
strategy:
matrix:
go-version: [ "1.22" ]
go-version: [ "1.23" ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ "1.22" ]
go: [ "1.23" ]

steps:
- uses: actions/checkout@v4
Expand All @@ -25,12 +25,12 @@ jobs:
run: mkdir ui/dist && touch ui/dist/index.html

- name: golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v6
with:
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash
version: v1.54
version: v1.60

ui:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
go-version: [ "1.22" ]
go-version: [ "1.23" ]

steps:
- name: Check out code
Expand Down
8 changes: 7 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@ linters:
- errcheck
enable:
- goimports
- gofmt
- gofmt
linters-settings:
govet:
disable:
# printf: non-constant format string in call to fmt.Errorf (govet)
# showing up since golangci-lint version 1.60.1
- printf
Loading

0 comments on commit 63e98c9

Please sign in to comment.