Skip to content

Commit

Permalink
Add a rule about iostream header
Browse files Browse the repository at this point in the history
  • Loading branch information
tpadioleau committed Jan 7, 2025
1 parent 88c9392 commit a6d8774
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
clangFormatVersion: 18
- name: Prefer 'if defined' over 'ifdef'
run: if grep -R "ifdef" benchmarks/ examples/ include/ddc/ install_test/ tests/; then exit 1; fi
- name: Do not include <iostream> in the headers of the library
run: if grep -R "#include <iostream>" include/ddc/; then exit 1; fi
- name: Prefer spaces over tabs
run: if grep -PR "\t" benchmarks/ cmake/ examples/ include/ddc/ install_test/ tests/; then exit 1; fi
- name: Find modifications of Kokkos reserved macros
Expand Down

0 comments on commit a6d8774

Please sign in to comment.