Skip to content

Update all actions #295

Update all actions

Update all actions #295

Workflow file for this run

name: flake8 Lint
on: [pull_request]
jobs:
flake8-lint:
runs-on: ubuntu-latest
name: Flake8
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: install flake8
run: |
pip install flake8
- name: run flake8
run: |
flake8 . --max-line-length=100
continue-on-error: true