Add separate good/bad sink configurations #891
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: coursier/cache-action@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Check formatting | |
run: sbt scalafmtCheckAll | |
- name: Run unit tests | |
#TODO cleanup! | |
run: sbt "project http4s" test | |
- name: Run kafka unit tests | |
run: sbt "project kafka" test | |
# - name: Run integration tests Kinesis | |
# run: sbt "project kinesisDistroless" IntegrationTest/test | |
# - name: Run integration tests PubSub | |
# run: sbt "project pubsubDistroless" IntegrationTest/test | |
- name: Run integration tests Kafka | |
run: sbt "project kafkaDistroless" IntegrationTest/test |