move atorch and tfplus into independent projects #4311
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: main test for the project | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- main | |
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 | |
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: 043586e5-68b8-4588-9bf4-c333f2692345 | |
slug: intelligent-machine-learning/dlrover | |
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 |