Skip to content

Updating pyspedas/mth5 installation instructions #81

Updating pyspedas/mth5 installation instructions

Updating pyspedas/mth5 installation instructions #81

Workflow file for this run

name: build
on: [push]
jobs:
build:
strategy:
matrix:
python-version: [3.8]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel flake8 coverage # opencv-python==4.1.2.30
pip install -r requirements.txt
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# all Python files should follow PEP8 (except some notebooks, see setup.cfg)
flake8 pyspedas_examples
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --statistics
- name: Install from source (required for the pre-commit tests)
run: pip install .
- name: Test with coverage
run: coverage run -a -m tests.tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1