Skip to content

Update README.md - Added "sbt docker" command #16

Update README.md - Added "sbt docker" command

Update README.md - Added "sbt docker" command #16

Workflow file for this run

name: CI
on: [pull_request]
permissions:
contents: read
env:
JAVA_VERSION: 21
HTRC_NEXUS_DRHTRC_PWD: ${{ secrets.HTRC_NEXUS_DRHTRC_PWD }}
jobs:
test:
name: Build & test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: '${{ env.JAVA_VERSION }}'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests with coverage
run: sbt -mem 4000 coverage "+test" coverageReport
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false