We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f9158 commit d8ad5eeCopy full SHA for d8ad5ee
.github/workflows/test-integration-localstack.yaml
@@ -9,6 +9,14 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- 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
20
- name: Start LocalStack
21
run: |
22
pip install localstack awscli-local[ver1]
@@ -18,11 +26,6 @@ jobs:
26
echo "Waiting for LocalStack startup..."
27
localstack wait -t 30
28
echo "Startup complete"
- - name: Set up Python
- uses: actions/setup-python@v4
23
- with:
24
- python-version: "3.10"
25
- architecture: "x64"
29
- name: Deploy infrastructure
30
31
bin/deploy.sh
0 commit comments