We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 710eab3 commit 6bb9910Copy full SHA for 6bb9910
.github/workflows/pr-build-workflow.yml
@@ -20,3 +20,20 @@ jobs:
20
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
21
- name: Build with Gradle
22
run: ./gradlew clean build --continue --scan
23
+ check_windows:
24
+ name: Check Windows
25
+ runs-on: windows-latest
26
+ if: github.repository == 'spring-projects/spring-security'
27
+ steps:
28
+ - uses: actions/checkout@v2
29
+ - name: Set up JDK
30
+ uses: actions/setup-java@v1
31
+ with:
32
+ java-version: '11'
33
+ - name: Cache Gradle packages
34
+ uses: actions/cache@v2
35
36
+ path: ~/.gradle/caches
37
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
38
+ - name: Check with Gradle
39
+ run: ./gradlew check
0 commit comments