-
Notifications
You must be signed in to change notification settings - Fork 171
84 lines (82 loc) · 2.68 KB
/
main.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
name: code-check
on:
pull_request:
paths-ignore:
- "docs/**"
- "examples/**"
workflow_dispatch:
push:
branches:
- master
- main
paths-ignore:
- "docs/**"
- "examples/**"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v3
# This step references the directory that contains the action.
- uses: ./.github/actions/pre-commit
dlrover-python-test:
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
# This step checks out a copy of your repository.
- name: checkout branch
uses: actions/checkout@v3
# This step references the directory that contains the action.
- name: RUN pytest
uses: ./.github/actions/dlrover-python-test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: 3b0503fb-7c5e-4486-9ddf-2903deb77067
slug: intelligent-machine-learning/dlrover
go-master-test:
runs-on: ubuntu-latest
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v3
# This step references the directory that contains the action.
- name: RUN gotest
uses: ./.github/actions/go-master-test
operator-test:
runs-on: ubuntu-latest
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v3
# This step references the directory that contains the action.
- name: RUN gotest
uses: ./.github/actions/operator-test
brain-test:
runs-on: ubuntu-latest
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v3
# This step references the directory that contains the action.
- uses: ./.github/actions/brain-test
dlrover-system-test-criteo-deeprec:
runs-on: ubuntu-latest
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v3
# This step references the directory that contains the action.
- uses: ./.github/actions/dlrover-system-test-criteo-deeprec
dlrover-system-test-deepfm:
runs-on: ubuntu-latest
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v3
# This step references the directory that contains the action.
- uses: ./.github/actions/dlrover-system-test-deepfm
dlrover-system-test-tf2:
runs-on: ubuntu-latest
steps:
# This step checks out a copy of your repository.
- uses: actions/checkout@v3
# This step references the directory that contains the action.
- uses: ./.github/actions/dlrover-system-test-tf2