Skip to content

Update ridge_map.py

Update ridge_map.py #4

Workflow file for this run

name: ridge_map build
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.6,3.7]
steps:
- uses: actions/checkout@v2
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install .
python -m pip install pydocstyle pytest pylint pytest-cov black coveralls
- name: Run tests
run: ./scripts/test.sh