Skip to content

Commit 7883c74

Browse files
authored
Merge pull request #10 from FillerFree/add_ci
Add CI
2 parents 81bd6e7 + c580a16 commit 7883c74

2 files changed

Lines changed: 35 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: pandas_ai_ci
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
python-version: ["3.9", "3.10", "3.11"]
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Install poetry
18+
run: |
19+
pip install poetry
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install dependencies
25+
run: |
26+
poetry install
27+
pip install pylint pytest
28+
- name: Lint with pylint
29+
run: |
30+
pylint $(git ls-files '*.py')
31+
continue-on-error: true
32+
- name: Test with pytest
33+
run: |
34+
pytest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Contributions are welcome! Please check out the todos below, and feel free to op
9797
- [ ] Add support for more LLMs
9898
- [ ] Make PandasAI available from a CLI
9999
- [ ] Create a web interface for PandasAI
100-
- [ ] Add CI/CD
101100
- [ ] Add unit tests
102101
- [ ] Add contributing guidelines
102+
- [x] Add CI
103103
- [x] Add support for conversational responses

0 commit comments

Comments
 (0)