Use Artifacts to Collect Unsupported Library Versions from Parallel Jobs #1076
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: "Check code style" | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'library-and-framework-list*.json' | |
jobs: | |
checkstyle: | |
if: github.repository == 'oracle/graalvm-reachability-metadata' | |
name: "📋 Check style according to checkstyle.xml" | |
runs-on: "ubuntu-20.04" | |
timeout-minutes: 15 | |
steps: | |
- name: "☁️ Checkout repository" | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
- name: "🔧 Prepare environment" | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '17' | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: ./gradlew checkstyle |