Skip to content

Commit 4e467ce

Browse files
committed
update README for qpyconf
1 parent e40d837 commit 4e467ce

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,31 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.10","3.11"]
10+
python-version: ["3.10", "3.11"]
1111

1212
steps:
13-
- uses: actions/checkout@v4
14-
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v5
16-
with:
17-
python-version: ${{ matrix.python-version }}
13+
- uses: actions/checkout@v4
14+
- name: Set up Python ${{ matrix.python-version }}
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: ${{ matrix.python-version }}
1818

19-
- name: Install pdm
20-
run: pipx install pdm
19+
- name: Install pdm
20+
run: pipx install pdm
2121

22-
- name: Set up cache
23-
uses: actions/cache@v4.0.2
24-
with:
25-
path: .venv
26-
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
27-
- name: Install dependencies
28-
run: |
29-
pdm install
22+
- name: Set up cache
23+
uses: actions/cache@v4.0.2
24+
with:
25+
path: .venv
26+
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
27+
- name: Install dependencies
28+
run: |
29+
pdm install
3030
31-
- name: Run test and code styles
32-
run: |
33-
pdm test
34-
pdm cleanup
31+
- name: Run test and code styles
32+
run: |
33+
pdm test
34+
pdm cleanup
3535
36+
- name: deploy docs
37+
run: pdm docs-deploy

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
[![Build status](https://github.com/fluent-qa/fluentqa-pdao/workflows/build/badge.svg?branch=main&event=push)](https://github.com/fluent-qa/fluentqa-pdao/actions/workflows/build.yml/badge.svg)
66
![Coverage Report](assets/images/coverage.svg)
77

8-
`fluentqa_pdao` is a Python package for database operation
8+
`qpydao` is a Python package for database operation
99

1010
</div>
1111

1212
## Features:
1313

14-
1. [X] easy to connect database
14+
1. [X] easy to connect database
1515
2. [X] easy to do sql operations CRUD
1616
3. [X] easy to support different mapper to python class
1717
4. [X] easy to generate sql and create sql version
@@ -40,8 +40,8 @@ qpydao = { git = "https://github.com/fluent-qa/fluentqa-pdao.git", branch = "mai
4040
- [X] 支持多数据库
4141
4. event listener on entity change
4242
5. code generation
43-
6. CRUD operation
44-
7. Module Registration and Auto Injection
43+
6. CRUD operation
44+
7. Module Registration and Auto Injection
4545
4646
## 使用用例
4747
@@ -130,4 +130,3 @@ def test_repo():
130130
131131
integrate with dl-sql:
132132
- [dl-sql](https://github.com/adobe/dy-sql.git)
133-

0 commit comments

Comments
 (0)