Skip to content

chore(deps): update rabbitmq docker tag to v3.11.20 #288

chore(deps): update rabbitmq docker tag to v3.11.20

chore(deps): update rabbitmq docker tag to v3.11.20 #288

Workflow file for this run

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'