Skip to content

adding asecellfilter_kwargs to Structure.relax for more controlled cell relaxations #156

adding asecellfilter_kwargs to Structure.relax for more controlled cell relaxations

adding asecellfilter_kwargs to Structure.relax for more controlled cell relaxations #156

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv with python version.
uses: astral-sh/setup-uv@v7
with:
python-version: "3.13"
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: |
uv sync --upgrade
- name: ruff
run: |
uv run ruff check .
uv run ruff format --check .
- name: pyright
run: uv run pyright src