Skip to content

Commit

Permalink
Fix healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasmullie committed Jul 1, 2023
1 parent 1e81c2a commit 1307e13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ jobs:
- uses: actions/checkout@v3
- name: Install latest Docker Compose
run: |
curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
curl -L "https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s | tr '[:upper:]' '[:lower:]')-$(uname -m)" -o docker-compose
chmod +x docker-compose
mv docker-compose /usr/local/bin/docker-compose
- name: Test (twice, if needed)
run: make test || make test
- name: Healthcheck ping
Expand Down

0 comments on commit 1307e13

Please sign in to comment.