Skip to content

Update pyproject.toml #367

Update pyproject.toml

Update pyproject.toml #367

Workflow file for this run

name: Checkstyle
on:
pull_request:
push:
branches:
- master
jobs:
checkstyle:
name: Checkstyle with Flake8
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
steps:
-
name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint the code with flake8
run: |
flake8 .