Skip to content

[detail] Clean class Computation to simplify potential changes in the future #162

[detail] Clean class Computation to simplify potential changes in the future

[detail] Clean class Computation to simplify potential changes in the future #162

Workflow file for this run

name: Run Style Check
on:
push:
branches: [ "main", "release" ]
pull_request:
branches: [ "main", "release" ]
jobs:
style:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade uv
python -m uv pip install ruff==0.8.2
- name: Style check
run: |
ruff check cuequivariance
ruff check cuequivariance_jax
ruff check cuequivariance_torch