Skip to content

Add flake8 linting workflow with failing script #1

Add flake8 linting workflow with failing script

Add flake8 linting workflow with failing script #1

Workflow file for this run

name: Python Linting
on:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 script.py