Skip to content

Commit

Permalink
chore: Use poetry deps for testings
Browse files Browse the repository at this point in the history
  • Loading branch information
last-partizan committed Jun 1, 2024
1 parent d5f7cc1 commit 77c6651
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,18 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install linters
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install ruff==0.4.5
python -m pip install --upgrade poetry pip
poetry install --sync --no-root
- name: Run linters
run: |
make lint
- name: Install type checking dependencies
run: |
python -m pip install --upgrade pip
pip install django==4.2.10 django-stubs==4.2.7 mypy==1.8.0
- name: Run type checking
run: |
make typecheck
- name: Test package install
run: |
python -m pip install --upgrade pip
python setup.py sdist
pip install dist/*
Expand Down

0 comments on commit 77c6651

Please sign in to comment.