File tree Expand file tree Collapse file tree 5 files changed +25
-10
lines changed Expand file tree Collapse file tree 5 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 5
5
golangci :
6
6
strategy :
7
7
matrix :
8
- go-version : [1.14 .x]
8
+ go-version : [1.15 .x]
9
9
platform : [ubuntu-latest]
10
10
name : golangci-lint
11
11
runs-on : ${{ matrix.platform }}
@@ -17,11 +17,11 @@ jobs:
17
17
with :
18
18
go-version : ${{ matrix.go-version }}
19
19
- run : |
20
- docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.24 .0 golangci-lint run -v
20
+ docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.31 .0 golangci-lint run -v
21
21
docker :
22
22
strategy :
23
23
matrix :
24
- go-version : [1.14 .x]
24
+ go-version : [1.15 .x]
25
25
platform : [ubuntu-latest]
26
26
name : docker
27
27
runs-on : ${{ matrix.platform }}
38
38
tests :
39
39
strategy :
40
40
matrix :
41
- go-version : [1.11 .x, 1.12 .x, 1.13.x, 1.14 .x]
41
+ go-version : [1.13 .x, 1.14 .x, 1.15 .x]
42
42
platform : [ubuntu-latest, macos-latest]
43
43
name : tests
44
44
runs-on : ${{ matrix.platform }}
61
61
coverage :
62
62
strategy :
63
63
matrix :
64
- go-version : [1.14 .x]
64
+ go-version : [1.15 .x]
65
65
platform : [ubuntu-latest]
66
66
name : coverage
67
67
runs-on : ${{ matrix.platform }}
Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ linters:
47
47
- prealloc
48
48
- gochecknoglobals
49
49
- gofmt
50
+ - godot
51
+ - nlreturn
52
+ - gofumpt
53
+ - gci
54
+ - goerr113
50
55
51
56
run :
52
57
skip-dirs :
@@ -63,6 +68,6 @@ issues:
63
68
# golangci.com configuration
64
69
# https://github.com/golangci/golangci/wiki/Configuration
65
70
service :
66
- golangci-lint-version : 1.24 .x # use the fixed version to not introduce new linters unexpectedly
71
+ golangci-lint-version : 1.31 .x # use the fixed version to not introduce new linters unexpectedly
67
72
prepare :
68
- - echo "here I can run custom commands, but no preparation needed for this repo"
73
+ - echo "here I can run custom commands, but no preparation needed for this repo"
Original file line number Diff line number Diff line change @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file.
3
3
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
5
5
6
+ ## [ 0.7.0] 2020-09-26
7
+ ### Added
8
+ - Run tests for Go 1.15
9
+
10
+ ### Removed
11
+ - Tests for Go 1.11 and Go 1.12
12
+
13
+ ### Changed
14
+ - Updated docker base image to 1.15.2
15
+ - Updated version of golangci-lint to 1.31
16
+
6
17
## [ 0.6.0] 2020-04-09
7
18
### Added
8
19
- Added -style markdown option
Original file line number Diff line number Diff line change 1
- FROM golang:1.14 .2-alpine3.11
1
+ FROM golang:1.15 .2-alpine3.12
2
2
RUN apk add --no-cache git
3
3
WORKDIR /home
4
4
COPY ./ .
Original file line number Diff line number Diff line change @@ -173,10 +173,9 @@ tests and avoid dependencies on modules not well maintained and documented.
173
173
174
174
## Supported Go versions
175
175
176
- - 1.11.x
177
- - 1.12.x
178
176
- 1.13.x
179
177
- 1.14.x
178
+ - 1.15.x
180
179
181
180
## Supported operating systems
182
181
You can’t perform that action at this time.
0 commit comments