-
Notifications
You must be signed in to change notification settings - Fork 2
41 lines (35 loc) · 888 Bytes
/
Copy pathcml.yaml
File metadata and controls
41 lines (35 loc) · 888 Bytes
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
38
39
40
41
name: DVC Workflow
on:
pull_request:
branches:
- main
paths:
- '**/*.dvc'
- '.dvc/**'
jobs:
run_data_checker:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
python-version: [ "3.12", "3.11" ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements_dev.txt
pip list
- name: Pull data
run: |
dvc pull --no-run-cache
- name: Check data statistics
run: |
python data_stats.py