Skip to content

Merge pull request #188 from carlosmmatos/bump-3.2.0 #41

Merge pull request #188 from carlosmmatos/bump-3.2.0

Merge pull request #188 from carlosmmatos/bump-3.2.0 #41

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