Skip to content

Test CI with pull request #5

Test CI with pull request

Test CI with pull request #5

name: Attempt installation and linting
on: [pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
fail-fast: false
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- name: Set up Anaconda
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: newestfenics
environment-file: conda_env_no_cuda.yml
python-version: 3.9.18
auto-activate-base: false
- name: Install other dependencies
run: |
pip install git+https://github.com/g-peery/sanity_research_utils.git git+https://github.com/g-peery/moola.git
pip install -e .
- 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