Skip to content

Commit bb0e404

Browse files
committed
rename script
1 parent 47b537b commit bb0e404

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/programming_team_code_ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
run: oj-verify all --tle 60 --timeout 21600
3131

32-
greps_clangformat_cppcheck:
32+
grep_clangformat_cppcheck:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- uses: actions/checkout@v2
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install dependencies
4242
run: sudo apt update && sudo apt install -y clang-format-19 cppcheck
4343
- name: checks format then lints
44-
run: make --directory=tests/ greps_clangformat_cppcheck
44+
run: make --directory=tests/ grep_clangformat_cppcheck
4545

4646
clangtidy:
4747
runs-on: ubuntu-latest
@@ -101,7 +101,7 @@ jobs:
101101

102102
publish_ptc:
103103
runs-on: ubuntu-latest
104-
needs: [library_checker_aizu, greps_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, files_without_tests, build_ptc]
104+
needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, files_without_tests, build_ptc]
105105
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
106106
steps:
107107
- uses: actions/checkout@v2
@@ -119,7 +119,7 @@ jobs:
119119

120120
update_main:
121121
runs-on: ubuntu-latest
122-
needs: [library_checker_aizu, greps_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, files_without_tests]
122+
needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, files_without_tests]
123123
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
124124
steps:
125125
- uses: actions/checkout@v2

tests/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ help:
77
@echo " |"
88
@echo "make compile_commented_snippets | compile code in @code...@endcode comments"
99
@echo " |"
10-
@echo "make greps_clangformat_cppcheck | greps to catch various bad things, clang-format, cppcheck"
10+
@echo "make grep_clangformat_cppcheck | various greps to catch certain things, clang-format, cppcheck"
1111
@echo " |"
1212
@echo "make do_format | format with clang-format"
1313
@echo " |"
@@ -31,8 +31,8 @@ compile_gcc:
3131
compile_clang:
3232
./scripts/compile_clang.sh
3333

34-
greps_clangformat_cppcheck:
35-
./scripts/greps_clangformat_cppcheck.sh
34+
grep_clangformat_cppcheck:
35+
./scripts/grep_clangformat_cppcheck.sh
3636

3737
do_format:
3838
./scripts/do_format.sh
File renamed without changes.

0 commit comments

Comments
 (0)