Auto PR - Kalix Runtime version 1.1.51 #98
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: Build and test | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
build-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up JDK 11 | |
uses: coursier/[email protected] | |
with: | |
jvm: temurin:1.11 | |
- name: Cache Coursier cache | |
uses: coursier/[email protected] | |
- name: sbt 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 |