Skip to content

Consolidate the public defect-concentration interface #843

Consolidate the public defect-concentration interface

Consolidate the public defect-concentration interface #843

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v6
with:
python-version: ${{matrix.python-version}}
- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install ".[dev]"
pip list
- name: Lint
run: ruff check py_sc_fermi tests
- name: Run tests
run: pytest
- name: Static type checking
run: mypy py_sc_fermi