mirror of
https://github.com/aljazceru/gpt-engineer.git
synced 2026-02-07 06:06:01 +01:00
* Add github action to codespell main on push and PRs * Add rudimentary codespell config * Add pre-commit definition for codespell * Fixed a single typo codespell identifier
23 lines
351 B
YAML
23 lines
351 B
YAML
---
|
|
name: Codespell
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
name: Check for spelling errors
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Codespell
|
|
uses: codespell-project/actions-codespell@v2
|