Skip to content

Bump scipy from 1.6.3 to 1.10.0 #70

Bump scipy from 1.6.3 to 1.10.0

Bump scipy from 1.6.3 to 1.10.0 #70

Workflow file for this run

name: pre-commit
on: pull_request
jobs:
stylecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: install deps
run: pip install flake8==3.9.0 black==22.3.0 pre-commit-hooks==2.4.0
- name: black
run: black --check maggy
- name: flake8
run: flake8 maggy
- name: trailing-whitespace-fixer
run: trailing-whitespace-fixer $(find maggy -type f) || exit 1
- name: end-of-file-fixer
run: end-of-file-fixer $(find maggy -type f) || exit 1