Skip to content

fixed deploy.md so we won't forget versions again #52

fixed deploy.md so we won't forget versions again

fixed deploy.md so we won't forget versions again #52

Workflow file for this run

name: Linting code
on:
push:
branches: [ "main", "b*" ]
pull_request:
branches: [ "main", "b*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Upgrade pip
run: |
python3 -m pip install --upgrade pip
- name: Install using flags
run: |
python3 -m pip install -v --only-binary=:all: .[dev]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics