Skip to content

Attempt for fix issue 53 (#56) #122

Attempt for fix issue 53 (#56)

Attempt for fix issue 53 (#56) #122

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