Skip to content

chore(deps): update dependency wemake-python-styleguide to v1 #489

chore(deps): update dependency wemake-python-styleguide to v1

chore(deps): update dependency wemake-python-styleguide to v1 #489

Workflow file for this run

name: Python application
on: push
jobs:
test:
name: Test
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- name: Setup dependencies
uses: ExpressApp/github-actions-poetry@v0.5
with:
python-version: ${{ matrix.python-version }}
poetry-version: "2.1.3"
- name: Run tests
run: |
poetry run ./scripts/test
lint:
name: Lint
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- name: Setup dependencies
uses: ExpressApp/github-actions-poetry@v0.5
with:
python-version: ${{ matrix.python-version }}
poetry-version: "2.1.3"
- name: Run lint
run: |
poetry run ./scripts/lint
docs-lint:
name: Docs lint
runs-on: ubuntu-22.04
steps:
- name: Setup dependencies
uses: ExpressApp/github-actions-poetry@v0.5
with:
poetry-version: "2.1.3"
- name: Run linters
run: |
poetry run ./scripts/docs-lint