Skip to content

Merge pull request #104 from eed3si9n/wip/repos #40

Merge pull request #104 from eed3si9n/wip/repos

Merge pull request #104 from eed3si9n/wip/repos #40

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 8
runs-on: ${{ matrix.os }}
env:
# define Java options for both official sbt and sbt-extras
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: "${{ matrix.java }}"
cache: sbt
- name: Build and test
run: |
sbt -v "mimaReportBinaryIssues; scalafmtCheckAll; shadedPackageBin; test;"
ci-test/test.sh
shell: bash