Skip to content

Update setup.py

Update setup.py #126

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --fail-under=8 --ignore-long-lines --ignored-classes=astropy.units $(git ls-files '*.py')