-
Notifications
You must be signed in to change notification settings - Fork 9
42 lines (34 loc) · 897 Bytes
/
ci.yml
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
name: tests
on:
push:
pull_request:
types: [opened, reopened, review_requested, synchronize]
workflow_dispatch:
# Run tests 10:00 PM (JST) every day
schedule:
- cron: '0 13 * * *'
permissions:
contents: read
jobs:
check-workflows:
uses: ./.github/workflows/check-workflows.yml
test:
needs: check-workflows
uses: ./.github/workflows/test.yml
coverage:
needs: check-workflows
if: github.event_name != 'schedule'
uses: ./.github/workflows/coverage.yml
static_analysis:
needs: check-workflows
if: github.event_name != 'schedule'
uses: ./.github/workflows/static_analysis.yml
doc:
needs: check-workflows
if: github.event_name != 'schedule'
uses: ./.github/workflows/doc.yml
windows-build:
needs: check-workflows
uses: ./.github/workflows/windows-build.yml
with:
upload-artifacts: false