Skip to content

added badge (#60)

added badge (#60) #19

Workflow file for this run

name: nodeps
on: [push]
jobs:
build-linux:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
name: Check out repository
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies and pyemap
run: |
pip install pandas==1.5.3
pip install .
- name: Run tests
run: |
pip install pytest
pip install pytest-cov
pytest -m "not deps"