You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
286 B

  1. #!/bin/bash
  2. set -euxo pipefail
  3. echo "Install requirements..."
  4. pip install -r ./tests/scripts/md-table/requirements.txt
  5. echo "Generate current file..."
  6. ./tests/scripts/md-table/main.py > tmp.md
  7. echo "Compare docs/ci.md with actual tests in tests/files/*.yml ..."
  8. cmp docs/ci.md tmp.md