Skip to content

version - patch 1.5.4 > 1.5.5 #43

version - patch 1.5.4 > 1.5.5

version - patch 1.5.4 > 1.5.5 #43

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
workflow_dispatch:
env:
PYTHON_VERSION: 3.12.5
jobs:
flake8:
name: Flake8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- 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@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- 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