Feature/new about button #1059
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 . |