-
-
Notifications
You must be signed in to change notification settings - Fork 403
35 lines (29 loc) · 838 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Zerocode TDD CI Build In Action
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
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: Running PostgreSQL (to test DB SQL Executor)
run: docker-compose -f docker/compose/pg_compose.yml up -d
- name: Building and testing the changes
run: mvn clean test