Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee49d42 commit 9c2a011Copy full SHA for 9c2a011
1 file changed
testing/languages
@@ -17,7 +17,7 @@ EXCLUDED = frozenset((
17
18
19
def _always_run() -> frozenset[str]:
20
- ret = ['.github/workflows/languages.yml', 'testing/languages']
+ ret = ['.github/workflows/languages.yaml', 'testing/languages']
21
ret.extend(
22
os.path.join('pre_commit/resources', fname)
23
for fname in os.listdir('pre_commit/resources')
@@ -57,6 +57,8 @@ def main() -> int:
57
]
58
59
triggers_all = _always_run()
60
+ for fname in triggers_all:
61
+ assert os.path.exists(fname), fname
62
63
if not args.all:
64
with concurrent.futures.ThreadPoolExecutor(os.cpu_count()) as exe:
0 commit comments