Skip to content
Snippets Groups Projects
Commit 1f6ac1eb authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Perform spell checking

parent 6ecef870
No related branches found
No related tags found
No related merge requests found
......@@ -16,38 +16,21 @@ jobs:
runs-on: [ubuntu-latest]
steps:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: '8.0'
tools: composer:v2
extensions: intl, mbstring, xml
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- uses: actions/checkout@v3
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader
- name: Lint markdown files
uses: nosborn/github-action-markdown-cli@v3.1.0
with:
files: .
ignore_path: .markdownlintignore
- name: Perform spell check
uses: codespell-project/actions-codespell@master
with:
path: '**/*.md'
check_filenames: true
ignore_words_list: tekst
build:
name: Build documentation
needs: quality
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment