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.
25 lines
697 B
25 lines
697 B
name: Build Pull Request |
|
on: pull_request |
|
permissions: |
|
contents: read |
|
jobs: |
|
build: |
|
name: Build Pull Request |
|
if: ${{ github.repository == 'spring-projects/spring-framework' }} |
|
runs-on: ubuntu-latest |
|
timeout-minutes: 60 |
|
steps: |
|
- name: Check Out Code |
|
uses: actions/checkout@v4 |
|
- name: Build |
|
id: build |
|
uses: ./.github/actions/build |
|
- name: Print JVM Thread Dumps When Cancelled |
|
if: cancelled() |
|
uses: ./.github/actions/print-jvm-thread-dumps |
|
- name: Upload Build Reports |
|
if: failure() |
|
uses: actions/upload-artifact@v4 |
|
with: |
|
name: build-reports |
|
path: '**/build/reports/'
|
|
|