mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 13:39:41 +00:00
16 lines
284 B
YAML
16 lines
284 B
YAML
|
name: Check for typos
|
||
|
|
||
|
on:
|
||
|
[push, pull_request, workflow_dispatch]
|
||
|
|
||
|
jobs:
|
||
|
check-typos:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- run: git fetch origin ${{ github.base_ref }}
|
||
|
|
||
|
- name: Run spellcheck
|
||
|
uses: crate-ci/typos@v1.25.0
|