File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed
Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1+ Language : Cpp
2+ BasedOnStyle : Chromium
3+ UseTab : Never
4+ IndentWidth : 4
5+ TabWidth : 4
6+ AllowShortIfStatementsOnASingleLine : Never
7+ IndentCaseLabels : false
8+ ColumnLimit : 0
9+ AccessModifierOffset : -4
Original file line number Diff line number Diff line change 2020 - name : Run tests
2121 working-directory : ${{ env.path }}
2222 run : ctest -V
23+
24+ formatting_check :
25+ runs-on : ubuntu-latest
26+ steps :
27+ - uses : actions/checkout@v2
28+ - name : Run clang-format style check
29+ uses : coders-school/github-actions/clang-format-check@main
30+ with :
31+ check_path : ' homework/fibonacci'
Original file line number Diff line number Diff line change @@ -31,6 +31,4 @@ INSTANTIATE_TEST_SUITE_P(
3131 std::make_tuple(10 , 55 ),
3232 std::make_tuple(13 , 233 ),
3333 std::make_tuple(17 , 1597 ),
34- std::make_tuple(20 , 6765 )
35- )
36- );
34+ std::make_tuple(20 , 6765 )));
You can’t perform that action at this time.
0 commit comments