Skip to content

Updated actions using the latest base images and to run using Python 3.9 #120

Updated actions using the latest base images and to run using Python 3.9

Updated actions using the latest base images and to run using Python 3.9 #120

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.9
- name: install flake8
run: |
pip install flake8
- name: run flake8
run: |
flake8 . --max-line-length=100
continue-on-error: true