Delete components/wifi_provisioning directory #55
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: Python CI | |
# This workflow will be triggered when a PR modifies some python relevant files | |
on: | |
pull_request: | |
paths: | |
- "**.py" | |
- "requirements.txt" | |
jobs: | |
python_lint: | |
name: python lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.6, 3.7, 3.8] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Set up Python environment | |
uses: actions/setup-python@master | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
export IDF_PATH=${GITHUB_WORKSPACE} | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
flake8 . --config=.flake8 --benchmark |