Fix nacking unhandled pubsub messages during shutdown (#63) #236
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: coursier/cache-action@v6 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Download test requirements | |
run: | | |
docker pull testcontainers/ryuk:0.5.1 | |
docker pull localstack/localstack:2.3.2 | |
- name: Check Scala formatting | |
run: sbt scalafmtSbtCheck scalafmtCheckAll | |
- name: Run tests | |
run: sbt clean +test | |
- name: Check binary compatibility | |
run: sbt mimaReportBinaryIssues | |
- name: Check assets can be published | |
run: sbt +publishLocal |