Skip to content

remove useless magick convert subcommand, deprecated #58

remove useless magick convert subcommand, deprecated

remove useless magick convert subcommand, deprecated #58

Workflow file for this run

name: Lint
on:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
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 packages
run: |
python -m pip install --upgrade pip mypy flake8 lxml types-setuptools
pip install ./python-src
- name: Run mypy
run: |
mypy ./python-src --exclude=python-src/build || true
mypy --install-types --non-interactive ./python-src --exclude=python-src/build
mypy --install-types --non-interactive 'shellscripts/epochdisplay'
mypy --install-types --non-interactive 'shellscripts/epochguess'
mypy --install-types --non-interactive 'shellscripts/html-head'
mypy --install-types --non-interactive 'shellscripts/img-download'
mypy --install-types --non-interactive 'shellscripts/json-compress'
mypy --install-types --non-interactive 'shellscripts/lower'
mypy --install-types --non-interactive 'shellscripts/openurls'
mypy --install-types --non-interactive 'shellscripts/shebang'
mypy --install-types --non-interactive 'shellscripts/tq'
mypy --install-types --non-interactive 'shellscripts/unique-ignore-case'
- name: Run flake8
run: |
flake8 --config ./python-src/setup.cfg ./python-src/pura