Skip to content

Update CHANGELOG.md and fix few documentation details #112

Update CHANGELOG.md and fix few documentation details

Update CHANGELOG.md and fix few documentation details #112

Workflow file for this run

name: Run Style Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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 ruff==0.8.2
- name: Style check
run: |
ruff check cuequivariance
ruff check cuequivariance_jax
ruff check cuequivariance_torch