Skip to content

Commit 1433c45

Browse files
committed
Enforcing only one matrix combination runs at a time to avoid 409 Error. Edited GitHub Secret names to match.
1 parent a56053b commit 1433c45

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/validate.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
matrix:
2121
os: [ubuntu-latest, windows-latest, macos-latest]
2222
python-version: ["3.9", "3.10", "3.11", "3.12"]
23+
max-parallel: 1
2324
runs-on: ${{ matrix.os }}
2425
steps:
2526
- uses: actions/checkout@v3
@@ -37,8 +38,8 @@ jobs:
3738
python -m pytest src/onepassword/test_client.py
3839
- name: Example Test
3940
env:
40-
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.TEST_SERVICE_ACCOUNT_TOKEN }}
41-
OP_VAULT_ID: ${{ secrets.TEST_SERVICE_ACCOUNT_VAULT_ID }}
41+
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.EXAMPLE_TESTS_OP_SERVICE_ACCOUNT_TOKEN }}
42+
OP_VAULT_ID: ${{ secrets.EXAMPLE_TESTS_OP_VAULT_ID }}
4243
run: |
4344
pip install . &&
4445
python example/example.py

0 commit comments

Comments
 (0)