Skip to content

Added graph ref to the ParamInfo. #139

Added graph ref to the ParamInfo.

Added graph ref to the ParamInfo. #139

Workflow file for this run

name: Testing
on:
push:
branches:
- master
pull_request:
jobs:
lint:
strategy:
matrix:
cmd:
- black
- mypy
- ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "poetry"
- name: Install deps
run: poetry install
- name: Run lint check
run: poetry run pre-commit run -a ${{ matrix.cmd }}
pytest:
permissions:
checks: write
pull-requests: write
contents: write
strategy:
matrix:
py_version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest]
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v2
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.py_version }}"
cache: "poetry"
- name: Install deps
run: poetry install
- name: Run pytest check
run: poetry run pytest -vv -n auto --cov="taskiq_dependencies" .