Merge pull request #1336 from jluebbe/doc-fixes #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: style check | |
on: [push, pull_request] | |
jobs: | |
style: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install codespell | |
run: | | |
sudo apt-get update | |
sudo DEBIAN_FRONTEND='noninteractive' apt-get install -qy codespell | |
- name: Run uncrustify check | |
run: | | |
./uncrustify.sh | |
git diff --exit-code | |
- name: Run codespell check | |
run: | | |
codespell -L parms,cas -S 'openssl-ca,build,*.log' src include test docs |