Skip to content

Commit f86cee7

Browse files
authored
Merge pull request #60 from RedisGraph/ck-letsssl
apt update + golang version bump due to ssl cert changes
2 parents d223574 + ba88484 commit f86cee7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,20 @@ commands:
1818
jobs:
1919
build:
2020
docker:
21-
- image: circleci/golang:1.12
22-
21+
- image: circleci/golang:1.16
22+
2323
- image: redislabs/redisgraph:edge
2424

2525
working_directory: /go/src/github.com/RedisGraph/redisgraph-go
2626
steps:
2727
- checkout
28+
- run: |
29+
sudo apt-get update
30+
sudo apt-get upgrade -y
2831
- run: make test
2932
- early_return_for_forked_pull_requests
3033
- run: bash <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov) -t ${CODECOV_TOKEN}
31-
34+
3235
workflows:
3336
version: 2
3437
commit:

0 commit comments

Comments
 (0)