Skip to content

Commit ab7bee8

Browse files
Ahmad Rizqi MeydiarsoAhmad Rizqi Meydiarso
authored andcommitted
fix ci
1 parent e098666 commit ab7bee8

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ jobs:
1919
run: go mod download
2020
- name: Build
2121
run: make build
22+
- name: Set up Docker
23+
uses: docker/setup-buildx-action@v3
24+
- name: Ensure Docker Compose is available
25+
run: docker compose version
2226
- name: Start services
23-
run: docker-compose up -d postgres redis
27+
run: make docker-up
2428
- name: Wait for services
2529
run: |
2630
until docker exec qhronos_db pg_isready -U postgres; do sleep 1; done
@@ -29,4 +33,4 @@ jobs:
2933
run: make test
3034
- name: Stop services
3135
if: always()
32-
run: docker-compose down
36+
run: make docker-down

0 commit comments

Comments
 (0)