Skip to content

Commit 4b1d9c3

Browse files
committed
parallelize
1 parent 6f1b628 commit 4b1d9c3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ jobs:
2020
- python-version: 3.6
2121
prod-key: LABELBOX_API_KEY
2222
staging-key: STAGING_LABELBOX_API_KEY
23+
- python-version: 3.7
24+
prod-key: PROD_LABELBOX_API_KEY_2
25+
staging-key: STAGING_LABELBOX_API_KEY_2
26+
- python-version: 3.8
27+
prod-key: PROD_LABELBOX_API_KEY_3
28+
staging-key: STAGING_LABELBOX_API_KEY_3
2329

2430
steps:
2531
- name: Cancel previous workflow
@@ -79,9 +85,9 @@ jobs:
7985
# make sure to tell tox to use these environs in tox.ini
8086
#
8187
# msokoloff+prod-python@labelbox.com
82-
LABELBOX_TEST_API_KEY_PROD: ${{ secrets.[matrix.prod-key] }}
88+
LABELBOX_TEST_API_KEY_PROD: ${{ secrets[matrix.prod-key] }}
8389

8490
# randall+staging-python@labelbox.com
85-
LABELBOX_TEST_API_KEY_STAGING: ${{ secrets.[matrix.staging-key] }}
91+
LABELBOX_TEST_API_KEY_STAGING: ${{ secrets[matrix.staging-key] }}
8692
run: |
8793
tox -e py -- -svvx

0 commit comments

Comments
 (0)