Skip to content

Infe prof and same diff #141

Infe prof and same diff

Infe prof and same diff #141

Workflow file for this run

name: Style tests (flake8)
on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]
workflow_dispatch:
jobs:
build-and-test:
name: style test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip setuptools wheel
python -m pip install .[dev]
- name: Run style tests
run: |
python -m flake8 --max-line-length=120