Skip to content

Update python-app.yml #19

Update python-app.yml

Update python-app.yml #19

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint code
run: |
flake8 . --ignore=E501,E302,E303,E203,E741,E275,E225,W605,F401