Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oprypin committed Apr 27, 2024
1 parent 78f1f38 commit 23ab973
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .tools/test.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/sh
set -e
set -e -x

cd "$(dirname "$0")/.."

mkdocs build -f examples/good/mkdocs.yml -q --strict
mkdocs build -f examples/good/mkdocs.yml --strict
mkdocs --version | grep -E '\b1\.[01]\.' && exit 0 || true
mkdocs build -f examples/bad/mkdocs.yml -q --strict
! env LINT=true mkdocs build -f examples/bad/mkdocs.yml -q --strict >/dev/null 2>/dev/null
mkdocs build -f examples/bad/mkdocs.yml --strict
! env LINT=true mkdocs build -f examples/bad/mkdocs.yml --strict

0 comments on commit 23ab973

Please sign in to comment.