We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65a0b6c commit 548bdcbCopy full SHA for 548bdcb
6 files changed
.flake8
.github/workflows/release.yml
@@ -18,6 +18,8 @@ jobs:
18
uses: knowsuchagency/poetry-install@v1
19
env:
20
POETRY_VIRTUALENVS_CREATE: false
21
+ - name: Set version
22
+ run: poetry version "${{ github.ref_name }}"
23
- name: Release package
24
25
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
.github/workflows/test.yml
@@ -37,7 +37,7 @@ jobs:
37
steps:
38
- uses: actions/checkout@v4
39
- name: Set up Redis instance and Redis cluster
40
- run: docker-compose up -d
+ run: docker compose up -d
41
- name: Set up Python
42
uses: actions/setup-python@v2
43
with:
.pre-commit-config.yaml
@@ -29,6 +29,7 @@ repos:
29
pass_filenames: false
30
types: [python]
31
args:
32
+ - check
33
- "--fix"
34
- "taskiq_redis"
35
- "tests"
0 commit comments