Skip to content

Upgrade dynamodb from 2.20.101 to 2.20.103 #779

Upgrade dynamodb from 2.20.101 to 2.20.103

Upgrade dynamodb from 2.20.101 to 2.20.103 #779

Workflow file for this run

name: PR Validation
on: pull_request
jobs:
scalaFmt:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache SBT & ivy cache
uses: actions/cache@v3
with:
path: |
~/.ivy2/cache
~/.sbt
~/.cache/coursier/v1
key: ${{ runner.os }}-sbt-ivy-cache-${{ hashFiles('**/build.sbt') }}-${{ hashFiles('**/plugins.sbt') }}-${{ hashFiles('**/build.properties') }}
- name: Check formatting
run: sbt scalafmtCheckAll
test:
name: Compile and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache SBT & ivy cache
uses: actions/cache@v3
with:
path: |
~/.ivy2/cache
~/.sbt
~/.cache/coursier/v1
key: ${{ runner.os }}-sbt-ivy-cache-${{ hashFiles('**/build.sbt') }}-${{ hashFiles('**/plugins.sbt') }}-${{ hashFiles('**/build.properties') }}
- name: Compile and test
run: sbt docs/mdoc +test +doc version +mimaReportBinaryIssues