Fixed RD-15359: Implement the internal cache monitoring web server #58
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: | |
pull_request: | |
paths: | |
- .github/workflows/ci.yaml | |
- .sbtopts | |
- build.sbt | |
- .scalafmt.conf | |
- project/** | |
- src/** | |
defaults: | |
run: | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.READ_PACKAGES }} | |
jobs: | |
code-check: | |
runs-on: self-hosted | |
container: | |
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_2.12.19 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sbt headerCheckAll javafmtCheckAll scalafmtCheckAll | |
test: | |
runs-on: self-hosted | |
container: | |
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_2.12.19 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sbt clean test |