Skip to content

Commit d3e1ec3

Browse files
committed
add github actions workflow
1 parent 72d938b commit d3e1ec3

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI Pipeline
2+
3+
on: push
4+
5+
jobs:
6+
project-testing:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
12+
- name: Setup Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.12'
16+
17+
- name: Install Dependencies
18+
run: |
19+
pip install --upgrade pip
20+
pip install -r requirements.txt
21+
pip install dvc
22+
23+
- name: Run DVC Pipeline
24+
run: |
25+
dvc repro

requirements.txt

708 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)