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 48a9993 commit 7a6d930Copy full SHA for 7a6d930
1 file changed
.github/workflows/ci.yml
@@ -1,6 +1,9 @@
1
name: CI
2
3
on:
4
+ schedule:
5
+ # once per day
6
+ - cron: 0 0 * * *
7
push:
8
branches:
9
- dev
@@ -25,5 +28,11 @@ jobs:
25
28
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
26
29
restore-keys: ${{ runner.os }}-gradle
27
30
31
+ # See gradle file for difference between downloaders
32
- name: Build and run Tests
- run: ./gradlew check --stacktrace -Ddownloader=MOCK
33
+ run: |
34
+ if [[ $GITHUB_EVENT_NAME == 'schedule' ]]; then
35
+ ./gradlew check --stacktrace -Ddownloader=REAL
36
+ else
37
+ ./gradlew check --stacktrace -Ddownloader=MOCK
38
+ fi
0 commit comments