Skip to content

k-space TDA

k-space TDA #102

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
schedule:
- cron: '0 2 * * *'
jobs:
build:
name: python "3.10" on ubuntu-latest
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install momentGW
run: |
python -m pip install wheel
python -m pip install .[dev]
- name: Linting
run: |
python -m black momentGW/ --diff --check --verbose
python -m isort momentGW/ --diff --check-only --verbose
- name: Run unit tests
run: |
python -m pip install pytest pytest-cov
pytest --cov momentGW/