Skip to content

fix: make module attribute string encoding deterministic #44

fix: make module attribute string encoding deterministic

fix: make module attribute string encoding deterministic #44

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
tests:
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@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: "${{ matrix.java }}"
cache: sbt
- name: Build and test
run: ant test