Skip to content

FIX: Try again

FIX: Try again #100

Workflow file for this run

# This workflow will run lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-20.04
env:
PYTHON_VERSION: '3.9'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
name: 'Setup python'
- run: |
python -m pip install --upgrade pip wheel
pip install -r requirements_test.txt
name: 'Install dependencies with pip'
- run: make black
name: 'Run black'
- run: make isort
name: 'Run isort'
- run: make pylint
name: 'Run pylint'
- run: make pycodestyle
name: 'Run pycodestyle'
- run: make mypy
name: 'Run mypy'
- run: make flake8
name: 'Run flake8'
- run: make codespell
name: 'Run codespell'
- run: make pydocstyle
name: 'Run pydocstyle'