Skip to content

Commit

Permalink
fix: 🐛 install dependencies before localstack
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhoheiser committed Nov 21, 2023
1 parent e9f9158 commit d8ad5ee
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test-integration-localstack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: "x64"
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Start LocalStack
run: |
pip install localstack awscli-local[ver1]
Expand All @@ -18,11 +26,6 @@ jobs:
echo "Waiting for LocalStack startup..."
localstack wait -t 30
echo "Startup complete"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: "x64"
- name: Deploy infrastructure
run: |
bin/deploy.sh
Expand Down

0 comments on commit d8ad5ee

Please sign in to comment.