You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
480 B
21 lines
480 B
name: PR Build |
|
|
|
on: pull_request |
|
|
|
permissions: |
|
contents: read |
|
|
|
jobs: |
|
build: |
|
name: Build |
|
runs-on: ubuntu-latest |
|
if: ${{ github.repository == 'spring-projects/spring-security' }} |
|
steps: |
|
- uses: actions/checkout@v3 |
|
- name: Set up gradle |
|
uses: spring-io/spring-gradle-build-action@v1 |
|
with: |
|
java-version: '11' |
|
distribution: 'adopt' |
|
- name: Build with Gradle |
|
run: ./gradlew clean build --continue --scan
|
|
|