We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b5c7a6 + 826b315 commit ad6c834Copy full SHA for ad6c834
.github/workflows/main.yml
@@ -1,4 +1,4 @@
1
-name: CI Build
+name: Zerocode TDD CI Build In Action
2
3
on:
4
workflow_dispatch:
@@ -13,12 +13,20 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v3
16
+
17
- name: Setting up JDK8
18
uses: actions/setup-java@v3
19
with:
20
java-version: '8'
21
distribution: 'adopt'
22
23
+ - name: Install Docker Compose
24
+ run: |
25
+ sudo apt-get update
26
+ sudo apt-get install -y docker-compose
27
28
- name: Running Kafka
29
run: docker-compose -f docker/compose/kafka-schema-registry.yml up -d && sleep 10
30
31
- name: Building and testing the changes
32
run: mvn clean test
0 commit comments