Skip to content

Commit 1df0945

Browse files
committed
hold lock on AWS while running live tests
1 parent ca08274 commit 1df0945

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ jobs:
5555
name: Run Live Integration Tests
5656
needs:
5757
- deploy-dev
58+
concurrency:
59+
group: ${{ github.event.repository.name }}-dev
60+
cancel-in-progress: false
5861
steps:
5962
- uses: actions/checkout@v3
6063
- name: Set up Python 3.11 for testing

.github/workflows/deploy-prod.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ jobs:
5555
name: Run Live Integration Tests
5656
needs:
5757
- deploy-dev
58+
concurrency:
59+
group: ${{ github.event.repository.name }}-dev
60+
cancel-in-progress: false
5861
steps:
5962
- uses: actions/checkout@v3
6063
- name: Set up Python 3.11 for testing
@@ -96,6 +99,9 @@ jobs:
9699
name: Confirm services healthy
97100
needs:
98101
- deploy-aws-prod
102+
concurrency:
103+
group: ${{ github.event.repository.name }}-prod
104+
cancel-in-progress: false
99105
steps:
100106
- uses: actions/checkout@v3
101107
- name: Call the health check script

0 commit comments

Comments
 (0)