Skip to content

remove code analysis section for now and use old way of running linter #3

remove code analysis section for now and use old way of running linter

remove code analysis section for now and use old way of running linter #3

Workflow file for this run

# This workflow will install Python dependencies, lint and run tests with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: linting
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
linter: [pylint, mypy, flake8]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.8
poetry-version: 1.2.2
- name: pycodestyle
run:
poetry run pycodestyle sed tests
- name: pylint
run:
poetry run pyling sed tests
- name: mypy
run:
poetry run mypy sed tests