kinesis-it timeout #26
Workflow file for this run
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: Run tests | |
run: sbt clean test | |
- name: Check Scala formatting | |
run: sbt scalafmtSbtCheck scalafmtCheckAll | |
- name: Check binary compatibility | |
run: sbt mimaReportBinaryIssues | |
- name: Check assets can be published | |
run: sbt publishLocal |