Skip to content

Remove stale check_alpha debugging script #251

Remove stale check_alpha debugging script

Remove stale check_alpha debugging script #251

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install ".[dev,animation,pymatgen,ase]"
- name: Run tests
run: pytest --tb=short -q
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: pip install ".[dev,animation,pymatgen,ase]" mypy
- name: Run mypy
run: mypy src/hofmann --ignore-missing-imports