Skip to content

Commit 826b315

Browse files
authored
Install docker compose manually and try
1 parent 9b5c7a6 commit 826b315

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI Build
1+
name: Zerocode TDD CI Build In Action
22

33
on:
44
workflow_dispatch:
@@ -13,12 +13,20 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3
16+
1617
- name: Setting up JDK8
1718
uses: actions/setup-java@v3
1819
with:
1920
java-version: '8'
2021
distribution: 'adopt'
22+
23+
- name: Install Docker Compose
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get install -y docker-compose
27+
2128
- name: Running Kafka
2229
run: docker-compose -f docker/compose/kafka-schema-registry.yml up -d && sleep 10
30+
2331
- name: Building and testing the changes
2432
run: mvn clean test

0 commit comments

Comments
 (0)