diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..3aca454 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ + +version: 2 +updates: + # Enable version updates for Actions + - package-ecosystem: "github-actions" + # Look for `.github/workflows` in the `root` directory + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly" diff --git a/.github/workflows/mkdocs.yml b/.github/workflows/mkdocs.yml index 0fe7e9f..807b1c3 100644 --- a/.github/workflows/mkdocs.yml +++ b/.github/workflows/mkdocs.yml @@ -56,3 +56,15 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1 + + + spelling: + name: Spellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: rojopolis/spellcheck-github-actions@0.29.0 + name: Spellcheck + with: + task_name: Markdown + output_file: spellcheck-output.txt diff --git a/.pyspelling.yaml b/.pyspelling.yaml new file mode 100644 index 0000000..fbca01e --- /dev/null +++ b/.pyspelling.yaml @@ -0,0 +1,18 @@ +matrix: +- name: Markdown + aspell: + lang: en + dictionary: + wordlists: + - .wordlist.txt + encoding: utf-8 + pipeline: + - pyspelling.filters.markdown: + - pyspelling.filters.html: + comments: false + ignores: + - code + - pre + sources: + - '**/*.md' + default_encoding: utf-8 diff --git a/.wordlist.txt b/.wordlist.txt new file mode 100644 index 0000000..e69de29