ARKIV-1174 ARKIV-177 ARKIV-181 ARKIV-169 Qualified guesses #154
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-ignore: | |
- master | |
permissions: | |
packages: read | |
contents: read | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
cache: 'gradle' | |
- uses: gradle/wrapper-validation-action@v1.1.0 | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2.9.0 | |
with: | |
arguments: check |