Skip to content

Remove using jdk15 and jdk16 in integration tests #389

Remove using jdk15 and jdk16 in integration tests

Remove using jdk15 and jdk16 in integration tests #389

name: Build and run tests starter examples
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
jobs:
runExamples:
runs-on: ubuntu-latest
defaults:
run:
working-directory: intellij.tools.ide.starter.examples
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: clean build test
build-root-directory: intellij.tools.ide.starter.examples