File tree Expand file tree Collapse file tree 3 files changed +78
-84
lines changed Expand file tree Collapse file tree 3 files changed +78
-84
lines changed Original file line number Diff line number Diff line change 17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- uses : actions/checkout@v3
20
- - uses : actions/setup-python@v4
21
- with :
22
- python-version : " 3.12"
20
+ - uses : astral-sh/setup-uv@v3
21
+ - run : uv python install 3.12
23
22
- run : |
24
- curl -LsSf https://astral.sh/uv/install.sh | sh
25
23
uv sync --all-extras --frozen --no-install-project
26
24
uv run ruff format . --check
27
25
uv run ruff check . --no-fix
46
44
--health-retries 5
47
45
steps :
48
46
- uses : actions/checkout@v3
49
- - uses : actions/setup-python@v4
50
- with :
51
- python-version : " 3.12"
47
+ - uses : astral-sh/setup-uv@v3
48
+ - run : uv python install 3.13
52
49
- run : |
53
- curl -LsSf https://astral.sh/uv/install.sh | sh
54
50
uv sync --all-extras --frozen --no-install-project
55
51
uv run alembic upgrade head
56
52
uv run pytest . --cov=. --cov-report xml
Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ select = ["ALL"]
46
46
ignore = [
47
47
" D1" , # allow missing docstrings
48
48
" FBT" , # allow boolean args
49
- " ANN101" , # missing-type-self
50
- " ANN102" , # missing-type-cls
51
49
" INP" , # ignore flake8-no-pep420
52
50
" B008" , # function-call-in-default-argument
53
51
" ANN204" , # no typings for __init__
You can’t perform that action at this time.
0 commit comments