feat: get 'working' version #516
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting with pycodestyle | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, "bacpop-*" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/[email protected] | |
- name: Install dependencies | |
run: poetry install | |
- name: Analysing the code with pycodestyle | |
run: poetry run pycodestyle . | |
- name: checking docstrings with docsig | |
run: poetry run docsig ./beebop/ |