Skip to content

Commit 898a132

Browse files
committed
Test environment variables
1 parent 46d2f2a commit 898a132

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.circleci/config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,31 @@ jobs:
111111
docker:
112112
- image: cimg/python:3.11-browsers
113113
<<: *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
114128
workflows:
115129
version: 2
116130
build_all:
117131
jobs:
118132
- build_3_8
119133
- build_3_10
120134
- 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

Comments
 (0)