Skip to content

senzing-factory/build-resources#82 standardized labels #59

senzing-factory/build-resources#82 standardized labels

senzing-factory/build-resources#82 standardized labels #59

Workflow file for this run

name: flake8.yaml
on: [push]
jobs:
flake8:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
name: "flake8 Python ${{ matrix.python-version }}"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pwd; ls -la
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
max-line-length: "88"
path: "src/senzing_abstract"
plugins: "flake8-black"