Skip to content

Commit

Permalink
ci: 빌드 테스트를 위해 docker 및 docker compose 설치
Browse files Browse the repository at this point in the history
  • Loading branch information
minjungw00 committed Nov 13, 2024
1 parent f361783 commit a6f3136
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/lint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

# Install Docker
- name: Install Docker
run: |
sudo apt-get update
sudo apt-get install -y docker.io
# Install Docker Compose
- name: Install Docker Compose
run: |
sudo curl -L "https://github.com/docker/compose/releases/download/$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep tag_name | cut -d '"' -f 4)/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
# Test Building Docker Images
- name: Test Building Docker Images
env:
Expand Down

0 comments on commit a6f3136

Please sign in to comment.