Skip to content

lf_create_wanpath.py: LAN-3445 - create lf_create_wanpath.py #355

lf_create_wanpath.py: LAN-3445 - create lf_create_wanpath.py

lf_create_wanpath.py: LAN-3445 - create lf_create_wanpath.py #355

Workflow file for this run

name: CI
on: [push, pull_request]
# Lint code using flake8 and run unit tests using pytest
jobs:
lint:
# Tie runner to Ubuntu 22.04 LTS, as it still supports Python 3.7
# Minimum Python version on Ubuntu 24.04 LTS is Python 3.9.
runs-on: ubuntu-22.04
name: Run Linter
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.7"
- name: flake8 Lint
uses: py-actions/flake8@v2
#with:
# plugins: "flake8-bugbear"