Skip to content

Commit

Permalink
v.2.5.3: Ensure docker-compose is installed in GitHub Actions environ…
Browse files Browse the repository at this point in the history
…ment
  • Loading branch information
SaifAati committed Dec 30, 2024
1 parent 1c344f9 commit 76644dc
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions .github/workflows/test_docker_run_install_ubuntu.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
#name: Linux-Docker-install (CI-GHA)
#on:
# pull_request:
# branches:
# - main
#
#jobs:
# build_and_publish:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install Docker
# run: |
# ./install_cosicorr.sh --docker
# docker images
name: Linux-Docker-install (CI-GHA)
on:
pull_request:
branches:
- main

jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Docker Compose
run: sudo apt-get install -y docker-compose
- name: Install Docker
run: |
./install_cosicorr.sh --docker
docker images

0 comments on commit 76644dc

Please sign in to comment.