Add support for built-in functions like i18n
(fixes #163)
#350
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: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
env: | |
# see https://www.jetbrains.com/idea/download/previous.html | |
# and https://www.jetbrains.com/intellij-repository/snapshots/ | |
- IDEA_VERSION: IU-2022.2 | |
KOTLIN_VERSION: 1.6.21 | |
#- IDEA_VERSION: IU-2023.1 | |
# KOTLIN_VERSION: 1.8.0 | |
- IDEA_VERSION: IU-2023.3.3 | |
KOTLIN_VERSION: 1.9.10 | |
- IDEA_VERSION: IU-LATEST-EAP-SNAPSHOT | |
KOTLIN_VERSION: 1.9.10 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Build with Gradle | |
run: ./gradlew build -PideaVersion=${IDEA_VERSION} -PkotlinVersion=${KOTLIN_VERSION} | |
env: ${{ matrix.env }} |