Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI Build
name: Zerocode TDD CI Build In Action

on:
workflow_dispatch:
Expand All @@ -13,12 +13,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setting up JDK8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'adopt'

- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose

- name: Running Kafka
run: docker-compose -f docker/compose/kafka-schema-registry.yml up -d && sleep 10

- name: Building and testing the changes
run: mvn clean test