Skip to content

Commit 0dbd404

Browse files
authored
Merge pull request #21 from meaningfy-ws/feature/EPO-866
Upgrade dependencies, add CI
2 parents 3db17c9 + 8e79c88 commit 0dbd404

File tree

2 files changed

+38
-7
lines changed

2 files changed

+38
-7
lines changed

.github/workflows/test.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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

0 commit comments

Comments
 (0)