Skip to content

Commit 76644dc

Browse files
committed
v.2.5.3: Ensure docker-compose is installed in GitHub Actions environment
1 parent 1c344f9 commit 76644dc

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed
Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
#name: Linux-Docker-install (CI-GHA)
2-
#on:
3-
# pull_request:
4-
# branches:
5-
# - main
6-
#
7-
#jobs:
8-
# build_and_publish:
9-
# runs-on: ubuntu-latest
10-
# steps:
11-
# - uses: actions/checkout@v3
12-
# - name: Install Docker
13-
# run: |
14-
# ./install_cosicorr.sh --docker
15-
# docker images
1+
name: Linux-Docker-install (CI-GHA)
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
7+
jobs:
8+
build_and_publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Install Docker Compose
13+
run: sudo apt-get install -y docker-compose
14+
- name: Install Docker
15+
run: |
16+
./install_cosicorr.sh --docker
17+
docker images

0 commit comments

Comments
 (0)