Skip to content

ENH: Add scripts for operational flux comparisons #46

ENH: Add scripts for operational flux comparisons

ENH: Add scripts for operational flux comparisons #46

Workflow file for this run

name: Linux Python Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run_kda_examples:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U pytest
- name: Install kda
run: |
python -m pip install git+https://github.com/Becksteinlab/kda.git@master
- name: Test with pytest
run: |
pytest -v