Skip to content

Add logback to replicator test scope #1105

Add logback to replicator test scope

Add logback to replicator test scope #1105

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
scala:
- 2.13.8
- 2.12.17
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- name: scala
uses: olafurpg/setup-scala@v11
with:
java-version: openjdk@1.11
- name: build ${{ matrix.scala }}
run: sbt ++${{ matrix.scala }} clean coverage test
- name: test coverage
if: success()
run: sbt ++${{ matrix.scala }} coverageAggregate coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }}
- name: slack
uses: homoluctus/slatify@master
if: failure() && github.ref == 'refs/heads/master'
with:
type: ${{ job.status }}
job_name: Build
url: ${{ secrets.SLACK_WEBHOOK }}