mirror of
https://github.com/atuinsh/atuin.git
synced 2025-02-18 11:21:07 +01:00
24 lines
400 B
YAML
24 lines
400 B
YAML
|
# Codespell configuration is within .codespellrc
|
||
|
---
|
||
|
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@v4
|
||
|
- name: Codespell
|
||
|
uses: codespell-project/actions-codespell@v2
|