chore(deps): update rabbitmq docker tag to v3.11.23 #293
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: | |
branches-ignore: | |
- main | |
paths-ignore: | |
- CHANGELOG.md | |
- README.md | |
- CONTRIBUTING.md | |
- renovate.json | |
- ".github/workflows/**" | |
- .releaserc.yml | |
- "package*.json" | |
workflow_call: | |
jobs: | |
test: | |
name: Build and test | |
runs-on: ubuntu-20.04 | |
env: | |
TERM: dumb | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup scala environment | |
uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: openjdk@1.17 | |
- name: Cache sbt | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.sbt | |
~/.coursier | |
key: ${{ runner.os }}-sbt-${{ hashfiles('**/build.sbt') }} | |
- name: Lint with scalafmt | |
run: sbt scalafmtCheckAll | |
- name: Check with scalafix | |
run: sbt 'scalafixAll --check' |