chore(deps): bump software.amazon.awssdk:bom from 2.24.2 to 2.26.16 in /TestVectors/runtimes/java #900
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
# This workflow prevents TODOs in code | |
name: Check TODOs in code | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
findTodos: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check TODOs in code | |
shell: bash | |
# TODOs may be committed as long as the same line contains a link to a Github Issue or refers to a CrypTool SIM. | |
run: | | |
ALL_TODO_COUNT=$( { grep -r "TODO" . --exclude-dir=./TestVectors/runtimes --exclude-dir=./submodules --exclude-dir=./.git --exclude=./.github/workflows/ci_todos.yml || true; } | wc -l) | |
GOOD_TODO_COUNT=$( { grep -r "TODO.*\(github.com\/.*issues.*\/[1-9][0-9]*\|CrypTool-[1-9][0-9]*\)" . --exclude-dir=./submodules --exclude-dir=./.git --exclude-dir=./TestVectors/runtimes --exclude=./.github/workflows/ci_todos.yml || true; } | wc -l) | |
if [ "$ALL_TODO_COUNT" != "$GOOD_TODO_COUNT" ]; then | |
exit 1; | |
fi |