Skip to content

⬆️ Bump actions/checkout from 4 to 5 #180

⬆️ Bump actions/checkout from 4 to 5

⬆️ Bump actions/checkout from 4 to 5 #180

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Linting
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install flake8
run: |
python -m pip install flake8 -U
- name: Lint with flake8
run: |
flake8 paperclip test_project