Skip to content

Commit

Permalink
fixes: lint and test launching
Browse files Browse the repository at this point in the history
  • Loading branch information
b1r3k committed Feb 8, 2024
1 parent 4761b67 commit b0d0492
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ jobs:
run: python -m poetry config virtualenvs.create false
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: python -m poetry install
run: python -m poetry install --with dev
- name: Lint
run: make lint-check
run: |
python -m poetry run flake8 asyncstatsd
python -m poetry run mypy .
- name: Test
run: make test
run: python -m poetry run pytest
env:
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}

0 comments on commit b0d0492

Please sign in to comment.