Skip to content

py-scripts/create_chamberview_dut.py removed flake8 line #372

py-scripts/create_chamberview_dut.py removed flake8 line

py-scripts/create_chamberview_dut.py removed flake8 line #372

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"