File tree Expand file tree Collapse file tree 2 files changed +38
-7
lines changed
Expand file tree Collapse file tree 2 files changed +38
-7
lines changed Original file line number Diff line number Diff line change 1+ name : test
2+
3+ on :
4+ push :
5+ branches : [ '**' ]
6+
7+ jobs :
8+ main :
9+ name : main
10+ runs-on : ${{ matrix.os }}
11+ strategy :
12+ matrix :
13+ os : [ ubuntu-22.04 ]
14+ env :
15+ OS : ${{ matrix.os }}
16+ PYTHON : ' 3.8'
17+ steps :
18+ - uses : actions/checkout@v4
19+
20+ - name : Set up Python
21+ uses : actions/setup-python@v4
22+ with :
23+ python-version : 3.8
24+
25+ - name : Install dependencies
26+ run : |
27+ make install
28+
29+ - name : Test with pytest
30+ run : |
31+ make test
Original file line number Diff line number Diff line change 1+ click == 8.1.7
2+ Jinja2 == 3.1.2
3+ pandas == 2.0.3
4+ great-expectations == 0.18.6
15
2- Click
3- jinja2
4- pandas
5- great_expectations
66# Testing Dependencies
7- pytest
7+ pytest == 7.4.3
88
99# Documentation Dependencies
10- sphinx
11- sphinxcontrib-apidoc
10+ Sphinx == 7.1.2
11+ sphinxcontrib-apidoc == 0.4.0
You can’t perform that action at this time.
0 commit comments