generated from shivpalSW/dvc-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (27 loc) · 966 Bytes
/
ci-cd.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
###uncomment below lines to use CML
name: train-NLP-ML-usecase
on: [push]
jobs:
run:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: iterative/setup-cml@v1
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Update Node.js to v16
run: sudo apt-get install -y nodejs npm
- name: cml_run & Install Dependencies and Reproduce DVC
run: |
# Your ML workflow commands
pip install --upgrade pip
pip install -r requirements.txt
dvc repro -v ## v >>> verbose
echo "# REPORTS" >> report.md
echo "## metrics" >> report.md
cat scores.json >> report.md
- name: Comment on Last Commit
run: cml comment create report.md ## >> CML COMMAND USE TO COMMENT ON LAST COMMIT
env:
repo_token: ${{secrets.GITHUB_TOKEN}}