[pull] master from sdkman:master #109
This file contains hidden or 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: Pull Requests | |
| #run only on PR, not fork. Pull request that way the PR submitter will not have access to the repo credentials | |
| on: pull_request | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '11' | |
| cache: 'gradle' | |
| - name: Run with Gradle | |
| run: ./gradlew clean test --info | |
| - uses: kentaro-m/[email protected] | |
| with: | |
| configuration-path: ".github/auto_assign.yml" |