Bump org.jetbrains.intellij from 1.14.2 to 1.17.1 #135
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-License-Identifier: MIT | |
name: Java build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: "Build plugin" | |
run: ./gradlew test buildPlugin | |
- name: "Archive test results" | |
if: always() | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 | |
with: | |
name: test-results | |
path: | | |
build/reports | |
retention-days: 14 | |
- name: "Documentations" | |
run: ./gradlew asciidoc | |
- name: "Archive documentation" | |
if: always() | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 | |
with: | |
name: documentation | |
path: | | |
build/docs/asciidoc | |
retention-days: 14 | |