Skip to content

Commit

Permalink
drop support of 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
abice committed Mar 20, 2022
1 parent 800fdfe commit f542b76
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
go:
# Drop support of go 1.12
- "1.13"
# Drop support of go 1.13
- "1.14"
- "1.15"
- "1.16"
Expand Down
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,14 @@ bin/go-bindata: go.sum

generate1_15: generator/assets/assets.go generator/enum.tmpl
docker run -i -t -w /app -v $(shell pwd):/app --entrypoint /bin/sh golang:1.15 -c 'make clean $(GOBINDATA) && $(GO) generate ./generator && make clean'

.PHONY: ci
ci: docker_1.14
ci: docker_1.15
ci: docker_1.16
ci: docker_1.17
ci: docker_1.18

docker_%:
echo "##### testing golang $* #####"
docker run -i -t -w /app -v $(shell pwd):/app --entrypoint /bin/sh golang:$* -c 'make clean && make'

0 comments on commit f542b76

Please sign in to comment.