mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:14:37 +02:00
25 lines
456 B
YAML
25 lines
456 B
YAML
name: Reusable Spellcheck
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
env:
|
|
CMAKE_BUILD_TYPE: ${{ vars.CMAKE_BUILD_TYPE || 'RelWithDebInfo' }}
|
|
|
|
jobs:
|
|
spellcheck:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install codespell
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get update || true
|
|
sudo apt-get install -y codespell
|
|
|
|
- name: Run Spellchecker
|
|
run: codespell
|