File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main, master ]
6+ pull_request :
7+ branches : [ main, master ]
8+
9+ jobs :
10+ test :
11+ runs-on : windows-latest
12+ strategy :
13+ matrix :
14+ python-version : [3.8, 3.9, '3.10', '3.11']
15+
16+ steps :
17+ - uses : actions/checkout@v3
18+
19+ - name : Set up Python ${{ matrix.python-version }}
20+ uses : actions/setup-python@v4
21+ with :
22+ python-version : ${{ matrix.python-version }}
23+
24+ - name : Install dependencies
25+ run : |
26+ python -m pip install --upgrade pip
27+ pip install -r requirements.txt
28+
29+ - name : Install package in development mode
30+ run : |
31+ pip install -e .
32+
33+ - name : Run tests
34+ run : |
35+ python -m pytest tests/ -v
Original file line number Diff line number Diff line change 11[project ]
22name = " pysqlit"
3- version = " 0.2.1 "
3+ version = " 0.2.2 "
44description = " Python版sqlite"
55readme = " README.md"
66requires-python = " >=3.11"
You can’t perform that action at this time.
0 commit comments