Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: linkcheck

on:
pull_request:
branches:
- openriak-3.4

jobs:
check-links:
name: runner / linkspector
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run linkspector
uses: umbrelladocs/action-linkspector@v1.4.0
with:
config_file: ./.linkspector.yml
16 changes: 16 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: spellcheck

on:
pull_request:
branches:
- openriak-3.4

jobs:
spellcheck:
name: runner / spellcheck
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v2
- name: Run PySpelling as a GitHub action
uses: sbates130272/spellcheck-github-actions@v0.6.0
6 changes: 6 additions & 0 deletions .linkspector.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dirs:
- docs
files:
- ./README.md
excludedDirs:
- docs/previous
19 changes: 19 additions & 0 deletions .spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
spellchecker: aspell
matrix:
- name: markdown
aspell:
lang: en
d: en_GB
mode: markdown
ignore-case: true
sources:
- 'docs/*.md'
pipeline:
- pyspelling.filters.markdown
dictionary:
wordlists:
- wordlist.txt
output: wordlist.dic
encoding: utf-8
default_encoding: utf-8
expect_match: true
Loading
Loading