Skip to content

Commit

Permalink
add docker compose to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
IkeHunter committed Aug 30, 2024
1 parent c73e3e7 commit adc92e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Docker Compose
run: |
sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
- name: Build images
run: docker-compose build
- name: Run Test
Expand Down

0 comments on commit adc92e1

Please sign in to comment.