Skip to content

Bump org.jetbrains.kotlinx:kotlinx-html from 0.10.1 to 0.11.0 #39

Bump org.jetbrains.kotlinx:kotlinx-html from 0.10.1 to 0.11.0

Bump org.jetbrains.kotlinx:kotlinx-html from 0.10.1 to 0.11.0 #39

name: MPS compatibility
on:
push:
branches:
- 'main'
pull_request: {}
# allow manual execution just in case
workflow_dispatch:
jobs:
build-mps-components:
runs-on: ubuntu-latest
strategy:
matrix:
version:
# Testing with the first and last version of the supported range should be enough. Breaking changes usually stay there
# after being introduced. It's not expected that an incompatibility only exists in some intermediate version and then
# becomes compatible again.
# - "2020.3.6" VersionFixer was replaced by ModuleDependencyVersions in 2021.1 (used by model-sync-plugin)
- "2021.1.4"
# - "2021.2.6"
# - "2021.3.3"
# - "2022.2"
# - "2022.3"
- "2023.2"
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Build with ${{ matrix.version }}
run: >-
./gradlew --build-cache
mpsCompatibility
-Pmps.version=${{ matrix.version }}