hive-gpu 0.2.0

High-performance GPU acceleration for vector operations with Device Info API (Metal, CUDA, ROCm)
Documentation
name: Codespell

on:
  push:
    branches: [master, main, develop]
  pull_request:
    branches: [master, main, develop]

permissions:
  contents: read

jobs:
  codespell:
    name: Check for spelling errors
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v5
        with:
          fetch-depth: 0 # Fetch todo histórico para evitar cache de arquivos deletados

      - name: Install Codespell
        run: python -m pip install --upgrade 'codespell[toml]'

      - name: Run Codespell
        run: |

          codespell \
            --skip="*.lock,*.json,*.map,*.yaml,*.yml,target,node_modules,.git,dist" \
            --ignore-words-list="crate,ser,deser,hsa,ane,nd,inout,transa,transb,iterm"