Fix neighbor_list_from_ase(compute_distances=True) crashing on periodic structures #1315
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: "uv.lock" | |
| - name: Install dependencies | |
| run: | | |
| uv sync --group lint | |
| - name: ruff | |
| run: | | |
| uv run ruff --version | |
| uv run ruff check src | |
| uv run ruff format src --check | |
| - name: mypy | |
| run: | | |
| uv run mypy --version | |
| rm -rf .mypy_cache | |
| uv run mypy -p matgl |