From 4b732b5b0adedbd27f5d01d6002a5a5cb1f89ec7 Mon Sep 17 00:00:00 2001 From: Pierre GRANDIN Date: Thu, 6 Jun 2019 08:48:45 -0600 Subject: Readthedocs import (#784) * First rftd.io import * Testing Markdown doc * Testing Markdown doc * Testing RST * Datetime is required * Testing RST * Adding a basic configuration page from the wiki * Testing RST * Testing syntax highlighting * Testing syntax highlighting * Testing syntax highlighting * Importing https://wiki.navit-project.org/index.php/Maps * Importing https://wiki.navit-project.org/index.php/Maps * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Fixing links * Fixing links * Fixing links * Fixing links * Fixing links * Minor improvments * Minor improvments * Minor fixes * Importing detailed configuration * Improving the index page * Removing copyright, it makes CodeFactor unhappy * Added misspell checks * Fixed wrong copy pasta * Install curl, required to install misspell * Fixed some typos * Removed a bunch of trailing spaces * Removed a bunch of trailing spaces * Probably don't need "please" here. * Reworking content * Apply suggestions from code review Remove unneeded white spaces before colon * Apply suggestions from code review Setting song for software or file names like the other occurences * Update docs/binfile.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/advanced.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/advanced.rst Co-Authored-By: Joseph Herlant * Removed wiki comment * Update docs/configuration/display.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/display.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/general.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/general.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/general.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/layout.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant * Update docs/configuration/display.rst Co-Authored-By: Joseph Herlant * Apply suggestions from code review Co-Authored-By: Joseph Herlant --- .circleci/config.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index 57e2f4c68..823ca54d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -227,6 +227,29 @@ jobs: - run: name: Update results to Github command: export GIT_TERMINAL_PROMPT=0 && git push origin $CIRCLE_SHA1:refs/heads/master + check_spelling: + <<: *defaults + steps: + - checkout + - run: + name: Install curl + command: apt-get update && apt-get -y install curl + - run: + name: Install misspell + command: | + curl -L -o ./install-misspell.sh https://git.io/misspell + sh ./install-misspell.sh -b /usr/local/bin/ + - run: + name: Check docs folder for misspells + command: | + misspell docs/ > typos.txt + if [[ $( wc -l < typos.txt ) -gt 0 ]]; then + echo "Typos/mispells found, please fix them"; + cat typos.txt + exit -1 + fi + + workflows: version: 2 build_all: @@ -275,3 +298,7 @@ workflows: filters: branches: only: /^trunk$/ + - check_spelling: + filters: + branches: + only: /^readthedocs$/ -- cgit v1.2.1