Skip to content

Merge branch 'pip' of github.com:milzj/FW4PDE into pip #77

Merge branch 'pip' of github.com:milzj/FW4PDE into pip

Merge branch 'pip' of github.com:milzj/FW4PDE into pip #77

Workflow file for this run

name: Testing
on:
push:
branches:
- "*"
pull_request:
branchess:
- "*"
jobs:
build:
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2.2.0
with:
activate-environment: anaconda-client-env
environment-file: environment.yml
python-version: 3.8.11
auto-activate-base: false
- name: Lint with flake8
run: |
conda install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
conda install pytest
pytest