Skip to content

feat: add the hex_dump command (#3) #1

feat: add the hex_dump command (#3)

feat: add the hex_dump command (#3) #1

Workflow file for this run

name: lint
on:
push:
branches:
- main
concurrency:
group: lint-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
discover-typos:
name: discover-typos
runs-on: macos-26
steps:
- uses: actions/checkout@v6
- name: Set up Python environment
run: |
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install codespell
- name: Discover typos
run: |
source .venv/bin/activate
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*,./.git/*"