Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Enforce Vale on Data documentation #39029

Merged
merged 10 commits into from
Aug 31, 2023
Merged
Prev Previous commit
Next Next commit
Address review comments
Signed-off-by: Balaji Veeramani <balaji@anyscale.com>
  • Loading branch information
bveeramani committed Aug 30, 2023
commit 73b7a8d9171eb96354756c294eb834e42bc16392
4 changes: 2 additions & 2 deletions ci/lint/check-documentation-style.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -euxo pipefail

wget https://github.com/errata-ai/vale/releases/download/v2.28.0/vale_2.28.0_Linux_64-bit.tar.gz
VALE_BIN=$(mktemp -d)
tar -xvzf vale_2.28.0_Linux_64-bit.tar.gz -C "$VALE_BIN" vale
wget https://github.com/errata-ai/vale/releases/download/v2.28.0/vale_2.28.0_Linux_64-bit.tar.gz -P "$VALE_BIN"
tar -xvzf "$VALE_BIN"/vale_2.28.0_Linux_64-bit.tar.gz -C "$VALE_BIN" vale
"$VALE_BIN"/vale doc/source/data
rm -rf "$VALE_BIN"