Skip to content

Replace pep257 -> pydocstyle (#45) #137

Replace pep257 -> pydocstyle (#45)

Replace pep257 -> pydocstyle (#45) #137

Workflow file for this run

name: geomap-pep257
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
pep257:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pydocstyle
- name: source
run: |
python -m pydocstyle django_admin_geomap
- name: tests
run: |
python -m pydocstyle --match='.*\.py' tests/test