Skip to content

fix(aws): check for network interfaces before trying to process #607

fix(aws): check for network interfaces before trying to process

fix(aws): check for network interfaces before trying to process #607

Workflow file for this run

name: Python Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -e .[devel]
- name: Lint with flake8
run: |
flake8 fig
- name: Lint with pylint
run: |
pylint fig
- name: Lint with bandit
run: |
bandit -l -i -r fig