Skip to content

Feature/new about button #1059

Feature/new about button

Feature/new about button #1059

Workflow file for this run

name: 🐍 Flake8 Linting
on:
push:
branches:
- 'main'
- 'release/**'
- 'feature/**'
- 'fix/**'
- 'refactor/**'
paths-ignore:
- 'dbmodel/**'
pull_request:
branches:
- 'main'
- 'release/**'
- 'feature/**'
- 'fix/**'
- 'refactor/**'
paths-ignore:
- 'dbmodel/**'
jobs:
# Run flake8 linting
lint-flake8:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- python-version: 3.9
os: ubuntu-latest
- python-version: "3.10"
os: ubuntu-latest
- python-version: 3.11
os: ubuntu-latest
- python-version: 3.12
os: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install flake8
- name: Lint with flake8
run: flake8 .