mirror of
https://github.com/spring-projects/spring-authorization-server.git
synced 2026-05-02 19:29:14 +01:00
25 lines
485 B
YAML
25 lines
485 B
YAML
name: PR build
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest]
|
|
jdk: [11]
|
|
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
|