Skip to content

test: reduce pod and communication dependencies #134

test: reduce pod and communication dependencies

test: reduce pod and communication dependencies #134

Workflow file for this run

name: Check Code Style - FLAKE8
on: [push, pull_request]
jobs:
lint-flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- name: Install Dependencies
run: |
# These packages are installed in the base environment but may be older
# versions. Explicitly upgrade them because they often create
# installation problems if out of date.
python -m pip install --upgrade pip setuptools numpy
pip install flake8
- name: Run flake8
run: |
flake8