Skip to content

Revert "main - manually cast objects to dicts" #36

Revert "main - manually cast objects to dicts"

Revert "main - manually cast objects to dicts" #36

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
flake8:
name: Flake8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Style Test
id: test
run: |
python -m pip install flake8
python -m flake8 --max-line-length=120 --exclude app/description.py app
mypy:
name: mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Types test
id: test
run: |
python -m pip install mypy types-beautifulsoup4
python -m mypy --install-types --non-interactive --ignore-missing-imports --follow-imports=skip --strict-optional app