remove deprecated code, refactor code, add model training script #64
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
on: | |
push: | |
pull_request: | |
jobs: | |
run-test-cases: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v1 | |
- name: Test | |
run: make build-test | |
- name: Test pipeline | |
run: make test-pipeline | |
- name: Test model server | |
run: make test-model-server | |
- name: Test estimator | |
run: make test-estimator | |
timeout-minutes: 5 | |
- name: Test offline trainer | |
run: make test-offline-trainer |