Add if-else statement to run tests against real website on schedule

pull/516/head
XiangRongLin 2021-01-15 20:34:04 +01:00
rodzic 48a9993edd
commit 7a6d930e7b
1 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -1,6 +1,9 @@
name: CI
on:
schedule:
# once per day
- cron: 0 0 * * *
push:
branches:
- dev
@ -25,5 +28,11 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
# See gradle file for difference between downloaders
- name: Build and run Tests
run: ./gradlew check --stacktrace -Ddownloader=MOCK
run: |
if [[ $GITHUB_EVENT_NAME == 'schedule' ]]; then
./gradlew check --stacktrace -Ddownloader=REAL
else
./gradlew check --stacktrace -Ddownloader=MOCK
fi