1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-09-16 09:36:18 +02:00

Cache go mod in CircleCI

This commit is contained in:
DarthSim
2019-09-16 21:02:05 +06:00
parent 41ed99b0c0
commit f7dc78a2fe

View File

@@ -147,6 +147,13 @@ jobs:
vips_version: << parameters.vips_version >>
- install_go:
go_version: << parameters.go_version >>
- restore_cache:
keys:
- go-modules-{{ checksum "go.sum" }}
- run:
name: Build imgproxy
command: go test -v
- save_cache:
key: go-modules-{{ checksum "go.sum" }}
paths:
- "/go/pkg/mod"