Update Makefile to include 386 linux binary for release action #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |