Skip to content

CI

CI #1201

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 20 * * 5'
jobs:
test:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
java:
- 8
- 21
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
with:
java-version: ${{matrix.java}}
distribution: temurin
- uses: coursier/cache-action@v6
- shell: bash
run: sbt -v
"+ scalafmtCheckAll"
scalafmtSbtCheck
"+ test"
- uses: mikepenz/action-junit-report@db71d41eb79864e25ab0337e395c352e84523afe # v4.3.1
if: always()
with:
report_paths: '**/target/test-reports/*.xml'
require_tests: true
check_name: "${{ matrix.java }}"