Skip to content

⬆️ Bump pydocstyle from 6.1.1 to 6.3.0 #78

⬆️ Bump pydocstyle from 6.1.1 to 6.3.0

⬆️ Bump pydocstyle from 6.1.1 to 6.3.0 #78

Workflow file for this run

name: Test
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install Dependencies
run: poetry install -E aiohttp
- name: Lint
run: bash scripts/lint.sh
- name: Test
run: bash scripts/test.sh
- name: Upload coverage
uses: codecov/codecov-action@v2