Skip to content

Update scipy requirement from ~=1.11.1 to ~=1.11.2 #112

Update scipy requirement from ~=1.11.1 to ~=1.11.2

Update scipy requirement from ~=1.11.1 to ~=1.11.2 #112

Workflow file for this run

#
# @file : style.yml
# @date : 16 October 2022
# @authors : Orel Adivi and Daniel Noor
#
# Sanity Checks
name: Check Style (Flake8) - Style
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v3
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8
python -m pip install -r requirements.txt
- name: Analysing the code with Flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --max-complexity=15 --max-line-length=127 --statistics