Skip to content

Test change for PR workflow #1

Test change for PR workflow

Test change for PR workflow #1

Workflow file for this run

name: PR Lint
on:
pull_request: # run on every pull request event targeting this repo
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install lint dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8 on app
run: |
flake8 app || echo "Lint warnings (non-fatal for now)"