mirror of
https://github.com/aljazceru/gpt-engineer.git
synced 2026-02-01 03:05:47 +01:00
codespell: workflow, config + 1 single uno only typo fixed! (#426)
* 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
This commit is contained in:
committed by
GitHub
parent
20ea0c126a
commit
088fa3b44c
22
.github/workflows/codespell.yml
vendored
Normal file
22
.github/workflows/codespell.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
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
|
||||
Reference in New Issue
Block a user