We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c022843 commit e819592Copy full SHA for e819592
.circleci/config.yml
@@ -21,7 +21,8 @@ jobs:
21
compile:
22
<<: *default_machine_job
23
steps:
24
- - checkout
+ - attach_workspace:
25
+ at: ~/workdir
26
- run:
27
name: Get version
28
command: |
@@ -37,6 +38,7 @@ jobs:
37
38
- "*"
39
- store_artifacts:
40
path: bin
41
+
42
build_docker:
43
44
@@ -102,7 +104,13 @@ workflows:
102
104
version: 2
103
105
publish:
106
jobs:
- - compile
107
+ - codacy/checkout_and_version:
108
+ filters:
109
+ branches:
110
+ ignore: master
111
+ - compile:
112
+ requires:
113
+ - codacy/checkout_and_version
114
- build_docker:
115
requires:
116
- compile
0 commit comments