Update README.md with public dashboards #7
Workflow file for this run
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
# trailing-commas verifies that *.txt files do not contain lines with trailing commas. | |
name: trailing-commas | |
on: pull_request | |
jobs: | |
check-trailing-commas: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Ensure no trailing commas in *.txt files | |
run: | | |
# Get list of .txt files | |
FILES=$(git ls-files | grep "\.txt$") | |
# Check each file for trailing commas and fail if any are found | |
for FILE in $FILES; do | |
if grep -qE ",$" "$FILE"; then | |
echo "Trailing comma found in $FILE" | |
exit 1 | |
fi | |
done | |
echo "No trailing commas found in .txt files." |