Skip to content

CI

CI #447

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 8 * * 5'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
include:
- java: 8
- java: 17
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: ${{matrix.java}}
distribution: temurin
- uses: coursier/cache-action@v6
- run: |
git config core.whitespace tab-in-indent,trailing-space,space-before-tab,cr-at-eol
git show --oneline --check
- run: sbt
-v
$(if [[ "${{matrix.sbt_version}}" != "" ]] ; then echo "^^${{matrix.sbt_version}}" ; fi)
test
scripted
- run: rm -rf "$HOME/.ivy2/local" || true