fixup! utils: Rewrite run-tests.sh to use functions and extenal scripts #906
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: readme test | |
on: | |
- push | |
- pull_request | |
jobs: | |
ansible_test: | |
name: Verify readme | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
- name: Run readme test | |
run: | | |
error=0 | |
for i in roles/ipa*/README.md README-*.md; do grep -q $i README.md && echo "OK: $i" || { echo -e "\033[31;1mERROR: ${i} missing\033[0m"; error=1; } done | |
exit $error |