Skip to content

Commit 8567c94

Browse files
committed
another rename
1 parent 9a749c5 commit 8567c94

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
@@ -75,12 +75,12 @@ jobs:
7575
- name: Compile all tests
7676
run: make --directory=tests/ compile_clang
7777

78-
files_without_tests:
78+
find_files_without_tests:
7979
runs-on: ubuntu-latest
8080
steps:
8181
- uses: actions/checkout@v2
8282
- name: files without tests
83-
run: make --directory=tests/ files_without_tests
83+
run: make --directory=tests/ find_files_without_tests
8484

8585
build_pdf:
8686
runs-on: ubuntu-latest
@@ -101,7 +101,7 @@ jobs:
101101

102102
publish_ptc:
103103
runs-on: ubuntu-latest
104-
needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, files_without_tests, build_pdf]
104+
needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, find_files_without_tests, build_pdf]
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, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, files_without_tests]
122+
needs: [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang, find_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
@@ -20,7 +20,7 @@ help:
2020
@echo "make update_main | 1) copies included files into file"
2121
@echo " | 2) force pushes to main branch"
2222
@echo " |"
23-
@echo "make files_without_tests | print list of all .hpp files included by *no* .test.cpp files"
23+
@echo "make find_files_without_tests | print list of all .hpp files included by *no* .test.cpp files"
2424
@echo " | - these files are not compiled nor linted as part of ci"
2525
@echo " |"
2626
@echo "make print_which_tests_havent_run | mainly to check if all tests have run"
@@ -40,8 +40,8 @@ do_format:
4040
clangtidy:
4141
./scripts/clangtidy.sh
4242

43-
files_without_tests:
44-
./scripts/files_without_tests.sh
43+
find_files_without_tests:
44+
./scripts/find_files_without_tests.sh
4545

4646
build_pdf:
4747
./scripts/build_pdf.sh

0 commit comments

Comments
 (0)