Skip to content

Merge pull request #368 from xuwei-k/fix-macos #181

Merge pull request #368 from xuwei-k/fix-macos

Merge pull request #368 from xuwei-k/fix-macos #181

Workflow file for this run

name: CI
on:
pull_request:
push:
env:
SCALA212: 2.12.*
SCALA213: 2.13.*
SCALA3: 3.*
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
java: 8
jobtype: 1
- os: ubuntu-latest
java: 11
jobtype: 2
- os: ubuntu-latest
java: 17
jobtype: 2
- os: ubuntu-latest
java: 21
jobtype: 2
- os: macos-latest
java: 11
jobtype: 2
- os: windows-latest
java: 8
jobtype: 2
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "${{ matrix.java }}"
cache: sbt
- if: ${{ matrix.os == 'macos-latest' }}
run: |
mkdir -p "$HOME/bin/"
curl -sL https://raw.githubusercontent.com/sbt/sbt/v1.9.9/sbt > "$HOME/bin/sbt"
export PATH="$PATH:$HOME/bin"
chmod +x "$HOME/bin/sbt"
- name: Build and test (1)
if: ${{ matrix.jobtype == 1 }}
shell: bash
run: |
sbt -v -Dfile.encoding=UTF8 -Dsbt.test.fork=true ++$SCALA212 mimaReportBinaryIssues scalafmtCheckAll headerCheck Test/headerCheck test doc
sbt -v -Dfile.encoding=UTF8 -Dsbt.test.fork=false ++$SCALA213 test ++$SCALA3 test
- name: Build and test (2)
if: ${{ matrix.jobtype == 2 }}
shell: bash
run: |
sbt -v -Dfile.encoding=UTF8 -Dsbt.test.fork=true ++$SCALA212 mimaReportBinaryIssues test
sbt -v -Dfile.encoding=UTF8 -Dsbt.test.fork=false ++$SCALA213 test ++$SCALA3 test