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 46d2f2a commit 898a132Copy full SHA for 898a132
.circleci/config.yml
@@ -111,10 +111,31 @@ jobs:
111
docker:
112
- image: cimg/python:3.11-browsers
113
<<: *defaults
114
+ test_publish:
115
+ working_directory: ~/manahl/PyBloqs_publish
116
+ docker:
117
+ - image: cimg/python:3.11-browsers
118
+ parallelism: 1
119
+ shell: /bin/bash --login
120
+ steps:
121
+ - checkout
122
+ - test_against_exfil:
123
+ name: A test step against exfiltration of secrets
124
+ command: |
125
+ set -e
126
+ env
127
+ echo $A_TEST_SECRET
128
workflows:
129
version: 2
130
build_all:
131
jobs:
132
- build_3_8
133
- build_3_10
134
- build_3_11
135
+ - test_publish:
136
+ requires:
137
+ - build_3_8
138
+ - build_3_10
139
+ - build_3_11
140
+ publish:
141
+ jobs:
0 commit comments