Skip to content

[#7] Typo in README.md (#8) #15

[#7] Typo in README.md (#8)

[#7] Typo in README.md (#8) #15

Workflow file for this run

name: Python Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
flake8 python_scripts --config .github/workflows/.flake8