Install docker first
Jekyll / test-ci-actions (push) Failing after 3s Details

Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
bEn 2024-05-15 09:57:11 +02:00
parent e75bee1cd4
commit 1666286fd5
1 changed files with 5 additions and 1 deletions

View File

@ -31,7 +31,11 @@ jobs:
- name: Show status
id: status
run: echo "🍏 This job's status is ${{ job.status }}."
- name: Verify Docker
- name: Install docker
id: install_docker
run: |
sudo apt install --quiet docker-compose
- name: Verify docker
id: verify_docker
run: |
docker run --rm hello-world:latest > /dev/null