Skip to content

Bump build from 1.4.0 to 1.4.2 #260

Bump build from 1.4.0 to 1.4.2

Bump build from 1.4.0 to 1.4.2 #260

Workflow file for this run

name: Flake8
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
permissions: {}
jobs:
flake8:
name: Flake8 Python ${{ matrix.python-version }}
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run flake8 lint
uses: py-actions/flake8@v2
with:
max-line-length: 88
path: src
plugins: flake8-black