mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
22 lines
362 B
YAML
22 lines
362 B
YAML
name: Reusable Spellcheck
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
spellcheck:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install codespell
|
|
shell: bash
|
|
run: |
|
|
pip3 install codespell
|
|
codespell --version
|
|
|
|
- name: Run Spellchecker
|
|
run: codespell
|