-
-
Notifications
You must be signed in to change notification settings - Fork 22
50 lines (45 loc) · 1008 Bytes
/
build_check_testing.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Android Testing CI Workflow
env:
IS_PRERELEASE: true
on:
#push:
# branches:
# - master
# - develop
# paths-ignore:
# - '.github/**'
workflow_dispatch:
inputs:
build_animeworld:
description: 'Build AnimeWorld?'
required: false
default: 'true'
build_animeworldtv:
description: 'Build AnimeWorldTV?'
required: false
default: 'true'
build_mangaworld:
description: 'Build MangaWorld?'
required: false
default: 'true'
build_novelworld:
description: 'Build NovelWorld?'
required: false
default: 'true'
jobs:
test:
name: TestOne
runs-on: ubuntu-latest
steps:
- name: Get tag name
id: get_tag_name
run: |
set -x
echo "NIGHTLY_TIME=$(date)" >> $GITHUB_ENV
tester:
name: testing
runs-on: ubuntu-latest
steps:
- name: Echo Prerelease
run: |
echo "$IS_PRERELEASE"