Skip to content

main: Fix Typo: It is 'a USB-SD-Mux' #44

main: Fix Typo: It is 'a USB-SD-Mux'

main: Fix Typo: It is 'a USB-SD-Mux' #44

Workflow file for this run

name: flake8
on: [push, pull_request]
jobs:
flake8_py3:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
architecture: x64
- name: Install flake8
run: |
pip install --upgrade pip
pip install -r REQUIREMENTS.qa.txt
- name: Run flake8
uses: suo/flake8-github-action@releases/v1
with:
checkName: 'flake8_py3' # NOTE: this needs to be the same as the job name
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}