fix(ci): correct cleanup deps - remove all *_test.go files using find (#630)

This commit is contained in:
d-enk
2025-05-05 22:09:38 +03:00
committed by GitHub
parent 975e837466
commit a9a589c4d5

View File

@@ -26,7 +26,7 @@ jobs:
# remove tests in order to clean dependencies
- name: Remove xxx_test.go files
run: rm -rf *_test.go ./parallel/*_test.go docker-compose.yml img/
run: rm -rf $(find . -type f -name "*_test.go") docker-compose.yml img/
# cleanup test dependencies
- name: Cleanup dependencies