Skip to content

Commit

Permalink
fixing api ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shuhaib-aot authored Aug 7, 2024
1 parent e258cf8 commit baa2681
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/forms-flow-api-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,17 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Docker Compose
run: |
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
- name: Check for docker-compose.yml
run: |
if [ ! -f tests/docker/docker-compose.yml ]; then
echo "docker-compose.yml not found!"
exit 1
fi
- name: Install dependencies
run: |
make build
Expand Down

0 comments on commit baa2681

Please sign in to comment.