mirror of
https://github.com/sdkman/sdkman-cli.git
synced 2025-12-31 10:37:42 -05:00
20 lines
542 B
YAML
20 lines
542 B
YAML
name: Pull Requests
|
|
on: pull_request_target
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- uses: actions/setup-java@v2
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '11'
|
|
- name: Run with Gradle
|
|
run: ./gradlew clean test --info
|
|
- uses: kentaro-m/auto-assign-action@v1.1.2
|
|
with:
|
|
configuration-path: ".github/auto_assign.yml"
|