File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[core]
2- remote = mylocal
2+ remote = myremote
33['remote "mylocal"']
44 url = ../local_s3
5+ ['remote "myremote"']
6+ url = s3://sentiment-classification-e1a89ee8
Original file line number Diff line number Diff line change 1+ name : CI Pipeline
2+
3+ on : push
4+
5+ jobs :
6+ project-testing :
7+ runs-on : ubuntu-latest
8+
9+ steps :
10+ - name : checkout code
11+ uses : actions/checkout@v3
12+
13+ - name : setup python
14+ uses : actions/setup-python@v2
15+ with :
16+ python-version : ' 3.10'
17+
18+ - name : Cache pip dependencies
19+ uses : actions/cache@v3
20+ with :
21+ path : ~/.cache/pip
22+ key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
23+ restore-keys : |
24+ ${{ runner.os }}-pip-
25+
26+ - name : install dependencies
27+ run : |
28+ pip install -r requirements.txt
29+
30+ - name : run pipeline
31+ # env:
32+ # CAPSTONE_TEST: ${{ secrets.CAPSTONE_TEST }}
33+ run : |
34+ dvc repro
Original file line number Diff line number Diff line change @@ -43,15 +43,7 @@ boto3==1.34.131
4343botocore == 1.34.131
4444s3transfer == 0.10.2
4545
46- # =========================
47- # API / Serving (future-ready)
48- # =========================
49- Flask == 3.0.3
50- gunicorn == 22.0.0
51- waitress == 3.0.0
52- Werkzeug == 3.0.3
53-
54- # =========================
46+ # ========================
5547# Config & HTTP
5648# =========================
5749PyYAML == 6.0.1
You can’t perform that action at this time.
0 commit comments