forked from K1ngjulien/gruvbox-intellij-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (25 loc) · 628 Bytes
/
ci.yml
File metadata and controls
33 lines (25 loc) · 628 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
name: CI
on:
push: ~
jobs:
build:
runs-on: ubuntu-latest
env:
GRADLE_OPTS: >-
-Dorg.gradle.daemon=false
-Dorg.gradle.logging.level=info
-Dorg.gradle.logging.stacktrace=all
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- uses: gradle/actions/setup-gradle@v3
with:
cache-read-only: false
validate-wrappers: true
- name: Build plugin
run: ./gradlew buildPlugin
- name: Verify plugin
run: ./gradlew verifyPlugin