2020-06-11 14:07:34 -04:00
|
|
|
name: PR Build
|
|
|
|
|
2020-06-17 15:16:10 -04:00
|
|
|
on: pull_request
|
2020-06-11 14:07:34 -04:00
|
|
|
|
2022-06-11 20:31:28 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-06-11 14:07:34 -04:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-27 16:34:43 -04:00
|
|
|
if: ${{ github.repository == 'spring-projects/spring-security' }}
|
2020-06-11 14:07:34 -04:00
|
|
|
steps:
|
2022-07-27 16:34:43 -04:00
|
|
|
- uses: actions/checkout@v2
|
2022-07-27 12:07:42 -04:00
|
|
|
- name: Set up gradle
|
|
|
|
uses: spring-io/spring-gradle-build-action@v1
|
2020-06-11 14:07:34 -04:00
|
|
|
with:
|
2021-02-05 17:21:07 -05:00
|
|
|
java-version: '11'
|
2022-07-27 12:07:42 -04:00
|
|
|
distribution: 'adopt'
|
2020-06-11 14:07:34 -04:00
|
|
|
- name: Build with Gradle
|
2020-09-30 10:20:12 -04:00
|
|
|
run: ./gradlew clean build --continue --scan
|