Skip to content

Commit 903bfee

Browse files
committed
Merge branch 'release/0.1.1'
2 parents f9880ea + da6c7a3 commit 903bfee

File tree

2 files changed

+2
-34
lines changed

2 files changed

+2
-34
lines changed

.github/workflows/test.yml

-32
Original file line numberDiff line numberDiff line change
@@ -24,35 +24,3 @@ jobs:
2424
run: poetry install
2525
- name: Run lint check
2626
run: poetry run pre-commit run -a ${{ matrix.cmd }}
27-
pytest:
28-
permissions:
29-
checks: write
30-
pull-requests: write
31-
contents: write
32-
strategy:
33-
matrix:
34-
py_version: ["3.8", "3.9", "3.10", "3.11"]
35-
os: [ubuntu-latest, windows-latest]
36-
runs-on: "${{ matrix.os }}"
37-
steps:
38-
- uses: actions/checkout@v4
39-
- name: Install poetry
40-
run: pipx install poetry
41-
- name: Set up Python
42-
uses: actions/setup-python@v4
43-
with:
44-
python-version: "${{ matrix.py_version }}"
45-
cache: "poetry"
46-
- name: Install deps
47-
run: poetry install
48-
- name: Run pytest check
49-
run: poetry run pytest -vv -n auto --cov="taskiq_litestar" .
50-
- name: Generate report
51-
run: poetry run coverage xml
52-
- name: Upload coverage reports to Codecov with GitHub Action
53-
uses: codecov/codecov-action@v3
54-
if: matrix.os == 'ubuntu-latest' && matrix.py_version == '3.9'
55-
with:
56-
token: ${{ secrets.CODECOV_TOKEN }}
57-
fail_ci_if_error: false
58-
verbose: true

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "taskiq-litestar"
33
description = "Taskiq integration with litestar"
44
authors = ["Taskiq team <[email protected]>"]
55
maintainers = ["Taskiq team <[email protected]>"]
6-
version = "0.1.0"
6+
version = "0.1.1"
77
readme = "README.md"
88
license = "LICENSE"
99
classifiers = [
@@ -20,7 +20,7 @@ classifiers = [
2020
"Topic :: System :: Networking",
2121
"Development Status :: 3 - Alpha",
2222
]
23-
keywords = ["taskiq", "tasks", "distributed", "async"]
23+
keywords = ["taskiq", "tasks", "distributed", "async", "litestar"]
2424
packages = [{ include = "taskiq_litestar" }]
2525

2626
[tool.poetry.dependencies]

0 commit comments

Comments
 (0)