fix junction parsing logic fixes #35 #175
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
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Prepare for test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: listProductsReleases | |
- name: Execute test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: check | |
- name: Setup Plugin Verifier IDEs Cache | |
uses: actions/[email protected] | |
with: | |
path: ~/.pluginVerifier/ides | |
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} | |
- name: Run Plugin Verification tasks | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: runPluginVerifier -Pplugin.verifier.home.dir=~/.pluginVerifier/ides |