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.
24 lines
485 B
24 lines
485 B
name: PR build |
|
|
|
on: |
|
pull_request: |
|
branches: |
|
- '**' |
|
|
|
jobs: |
|
build: |
|
name: Build |
|
runs-on: ${{ matrix.os }} |
|
strategy: |
|
matrix: |
|
os: [ubuntu-latest, windows-latest] |
|
jdk: [17] |
|
fail-fast: false |
|
steps: |
|
- uses: actions/checkout@v2 |
|
- name: Set up JDK ${{ matrix.jdk }} |
|
uses: actions/setup-java@v1 |
|
with: |
|
java-version: ${{ matrix.jdk }} |
|
- name: Build with Gradle |
|
run: ./gradlew clean build
|
|
|