mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-12-04 00:00:17 +01:00
d48e898148
* README: Fix double-the in documentation * README: Consistently referer to the role name and not to repository name * README: Improve wording * Fix more typos * ci: Add GH action to check for spelling mistakes
18 lines
303 B
YAML
18 lines
303 B
YAML
---
|
|
name: Codespell
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
codespell:
|
|
name: Check for spelling errors
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: codespell-project/actions-codespell@master
|