diff --git a/.circleci/config.yml b/.circleci/config.yml index 2c972a49..e7c2fbb2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,35 +36,35 @@ jobs: name: "Unit Test GO 1.9" command: scripts/ci/test 1.9-alpine - test-golang-1.8: + test-golang-1.10: working_directory: /work docker: [{image: 'docker:17.06-git'}] steps: - checkout - setup_remote_docker - run: - name: "Unit Test GO 1.8" - command: scripts/ci/test 1.8-alpine + name: "Unit Test GO 1.10" + command: scripts/ci/test 1.10-alpine - test-golang-1.10: + test-golang-1.11: working_directory: /work docker: [{image: 'docker:17.06-git'}] steps: - checkout - setup_remote_docker - run: - name: "Unit Test GO 1.10" - command: scripts/ci/test 1.10-alpine + name: "Unit Test GO 1.11" + command: scripts/ci/test 1.11-alpine - test-golang-1.11: + test-golang-1.12: working_directory: /work docker: [{image: 'docker:17.06-git'}] steps: - checkout - setup_remote_docker - run: - name: "Unit Test GO 1.11" - command: scripts/ci/test 1.11-alpine + name: "Unit Test GO 1.12" + command: scripts/ci/test 1.12rc1-alpine coverage: docker: [{image: 'circleci/golang:1.11'}] @@ -92,8 +92,8 @@ workflows: ci: jobs: - lint - - test-golang-1.8 - test-golang-1.9 - test-golang-1.10 - test-golang-1.11 + - test-golang-1.12 - coverage