Commit 78bc232
committed
Fix: Install docker-compose in CI workflow
This commit addresses an error in the GitHub Actions CI workflow where
`docker-compose: command not found` would occur. The `ubuntu-latest`
runner does not include `docker-compose` by default.
Changes:
- Modified `.github/workflows/elixir.yml`:
- Added a new step "Set up Docker Compose" in the `test` job.
- This step runs `sudo apt-get update` and then
`sudo apt-get install -y docker-compose` to make the
`docker-compose` command available in the CI environment
before it is used by subsequent steps.1 parent 32fb720 commit 78bc232
1 file changed
+5
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
13 | 18 | | |
14 | 19 | | |
15 | 20 | | |
| |||
0 commit comments