diff --git a/.circleci/config.yml b/.circleci/config.yml index b41d2ee..03fae7b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,6 +28,13 @@ all-tags-filter: &all-tags-filter tags: only: /.*/ +jobs: + circle-all: + docker: [{ image: 'busybox:1.36.1@sha256:6d9ac9237a84afe1516540f40a0fafdc86859b2141954b4d643af7066d598b74' }] + resource_class: small + steps: + - run: {command: echo "All required jobs finished successfully"} + workflows: version: 2 verify-test-dist-publish: @@ -50,3 +57,6 @@ workflows: <<: *homepath <<: *gopath <<: *all-tags-filter + - circle-all: + requires: [verify, test, dist] + <<: *all-tags-filter