Update sbt to 1.9.9 (#73) #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: coursier/cache-action@v6 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: 8 | |
- name: Test | |
# This runs the template with the default parameters, and runs test within the templated app. | |
run: sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M test |