Skip to content

ci: run tests with all supported MPS versions #83

ci: run tests with all supported MPS versions

ci: run tests with all supported MPS versions #83

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
jobs:
build-and-test-with-mps:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- "2020.3.6"
- "2021.1.4"
- "2021.2.6"
- "2021.3.4"
- "2022.2.1"
- "2022.3"
- "2023.2"
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Assemble
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew build publishToMavenLocal -PciBuild=true
- name: Test with ${{ matrix.version }}
run: cd build-tools-gradle-test && ./gradlew --build-cache build publishToMavenLocal -Pmps.version=${{ matrix.version }}