-
Notifications
You must be signed in to change notification settings - Fork 53
38 lines (32 loc) · 948 Bytes
/
PullRequest.yml
File metadata and controls
38 lines (32 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Pull Request Validation
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ideaVersion: 2024.2.1
ideaPlatform: IC
- ideaVersion: 2024.2.1
ideaPlatform: PY
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
env:
IDEA_VERSION: ${{ matrix.ideaVersion }}
IDEA_PLATFORM: ${{ matrix.ideaPlatform }}
IDEA_SOURCES: false
run: xvfb-run ./gradlew test