Skip to content

ZhangPaxton model (and Robinson paper) added to conductance.py #50

ZhangPaxton model (and Robinson paper) added to conductance.py

ZhangPaxton model (and Robinson paper) added to conductance.py #50

Workflow file for this run

name: Install lompe and run tests
on:
workflow_dispatch:
pull_request:
branches: [ main ]
jobs:
checks:
name: Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install lompe
run: |
pip install -e .[dev,extras,deps-from-github]
- name: Test lompe
run: python -m pytest