Skip to content

Commit d8ad5ee

Browse files
committed
fix: 🐛 install dependencies before localstack
1 parent e9f9158 commit d8ad5ee

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/test-integration-localstack.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12+
- name: Set up Python
13+
uses: actions/setup-python@v4
14+
with:
15+
python-version: "3.10"
16+
architecture: "x64"
17+
- name: Install dependencies
18+
run: |
19+
pip install -r requirements-dev.txt
1220
- name: Start LocalStack
1321
run: |
1422
pip install localstack awscli-local[ver1]
@@ -18,11 +26,6 @@ jobs:
1826
echo "Waiting for LocalStack startup..."
1927
localstack wait -t 30
2028
echo "Startup complete"
21-
- name: Set up Python
22-
uses: actions/setup-python@v4
23-
with:
24-
python-version: "3.10"
25-
architecture: "x64"
2629
- name: Deploy infrastructure
2730
run: |
2831
bin/deploy.sh

0 commit comments

Comments
 (0)