Support 4x encoder resolution mode. #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs pylint | |
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Lint | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pylint-everything: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: [3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies # pylint does require dependencies to be installed | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint | |
pip install . | |
- name: Lint with pylint | |
run: | | |
pylint point/ | |
pylint-enforced: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: [3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies # pylint does require dependencies to be installed | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint | |
pip install . | |
# Files listed here are the ones that already pass pylint | |
- name: Lint with pylint | |
run: | | |
pylint point/nexstar.py | |
pylint point/gemini_exceptions.py |