File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 64
64
with :
65
65
name : errors
66
66
path : job-${{ github.job }}.txt
67
+ check_windows :
68
+ name : Check Windows
69
+ runs-on : windows-latest
70
+ steps :
71
+ - uses : actions/checkout@v2
72
+ - name : Set up JDK 11
73
+ uses : actions/setup-java@v1
74
+ with :
75
+ java-version : ' 11'
76
+ - name : Cache Gradle packages
77
+ uses : actions/cache@v2
78
+ with :
79
+ path : ~/.gradle/caches
80
+ key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
81
+ - name : Check with Gradle
82
+ run : |
83
+ export GRADLE_ENTERPRISE_CACHE_USERNAME="$GRADLE_ENTERPRISE_CACHE_USER"
84
+ export GRADLE_ENTERPRISE_CACHE_PASSWORD="$GRADLE_ENTERPRISE_CACHE_PASSWORD"
85
+ export GRADLE_ENTERPRISE_ACCESS_KEY="$GRADLE_ENTERPRISE_SECRET_ACCESS_KEY"
86
+ ./gradlew check -PartifactoryUsername="$ARTIFACTORY_USERNAME" -PartifactoryPassword="$ARTIFACTORY_PASSWORD"
67
87
snapshot_tests :
68
88
name : Test against snapshots
69
89
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments