mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-25 20:49:16 -05:00
20 lines
578 B
YAML
20 lines
578 B
YAML
name: Check Spelling
|
|
on: [ push, pull_request ]
|
|
jobs:
|
|
spellcheck:
|
|
strategy:
|
|
matrix:
|
|
operating-system:
|
|
- ubuntu-22.04
|
|
name: ${{ matrix.operating-system }}
|
|
runs-on: ${{ matrix.operating-system }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run CSpell
|
|
uses: streetsidesoftware/cspell-action@v6
|
|
with:
|
|
incremental_files_only: false
|