Skip to content

Version 1.13.2 - 2 bug fixes on new functionality in 1.13.1 #45

Version 1.13.2 - 2 bug fixes on new functionality in 1.13.1

Version 1.13.2 - 2 bug fixes on new functionality in 1.13.1 #45

Workflow file for this run

# This Action uses minimal steps to run in ~5 seconds to rapidly:
# Looks for typos in the codebase using codespell
# https://github.com/codespell-project/codespell#readme
name: codespell
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install --user codespell
- run: codespell --ignore-words-list="aks" --skip="*.sum"