Update display settings #36
Workflow file for this run
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
name: Linting | |
on: | |
push: | |
branches: | |
- main | |
- ci | |
paths: | |
- "**/*.py" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "**/*.py" | |
jobs: | |
lint: | |
name: Python Linting | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.6' | |
architecture: 'x64' | |
- name: Install Python packages | |
run: | | |
pip install --upgrade pip setuptools flake8 | |
- name: Run Python Lint Test | |
run: ./.github/workflows/run-linting.sh |