Skip to content

[skip-ci]: update change notes for next release #920

[skip-ci]: update change notes for next release

[skip-ci]: update change notes for next release #920

Workflow file for this run

name: Build & Verify
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
name: IDEA ${{ matrix.idea }} & JDK ${{ matrix.jdk }}
strategy:
fail-fast: false
matrix:
idea: [ '2023.2', '2023.2.2', '2023.2.6', '2023.3', '2023.3.4', '2023.3.6', '2024.1', '2024.1.2' ]
jdk: [ '17' ]
#os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.jdk }}
- name: Install D compiler
uses: dlang-community/setup-dlang@v1
- name: build & check
env:
ORG_GRADLE_PROJECT_ideaVersion: ${{ matrix.idea }}
run: ./gradlew build check
- name: Build Plugin
env:
ORG_GRADLE_PROJECT_ideaVersion: ${{ matrix.idea }}
run: ./gradlew buildPlugin
- name: Verify Plugin
env:
ORG_GRADLE_PROJECT_ideaVersion: ${{ matrix.idea }}
run: ./gradlew verifyPlugin