From 6c4bc2bf80f02d8fdf65ea01269c4a4f8acd0cf9 Mon Sep 17 00:00:00 2001 From: Khosrow Moossavi Date: Mon, 29 Jul 2019 09:59:31 -0400 Subject: [PATCH] Set name for CI jobs --- .circleci/config.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3179902..ca6235e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,35 +19,45 @@ jobs: steps: - restore_cache: key: repo-{{ .Environment.CIRCLE_SHA1 }} - - run: make verify + - run: + name: Verify 'vendor' dependencies + command: make verify checkfmt: <<: *defaults steps: - restore_cache: key: repo-{{ .Environment.CIRCLE_SHA1 }} - - run: make checkfmt + - run: + name: Check formatting of all go files + command: make checkfmt lint: <<: *defaults steps: - restore_cache: key: repo-{{ .Environment.CIRCLE_SHA1 }} - - run: make tools lint + - run: + name: Run linter + command: make tools lint test: <<: *defaults steps: - restore_cache: key: repo-{{ .Environment.CIRCLE_SHA1 }} - - run: make test + - run: + name: Run tests + command: make test build: <<: *defaults steps: - restore_cache: key: repo-{{ .Environment.CIRCLE_SHA1 }} - - run: make build + - run: + name: Build binary for current OS/ARCH + command: make build - save_cache: key: cca-{{ .Revision }} paths: