Skip to content

Commit 0a5f897

Browse files
committed
ci: roda apenas para arquivos .conll
1 parent 026cd8f commit 0a5f897

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/extrai_fatos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
# Define flag combinations to run (same for JSON and CSV)
1919
FLAGS_LIST=("" "-cc" "-sc" "-hs" "-a" "-a -t" "-cc -sc -hs -a -t")
2020
21-
for input_path in inputs/*; do
21+
# iterate only over .conll files in the inputs directory
22+
for input_path in inputs/*.conll; do
2223
[ -f "$input_path" ] || continue
2324
filename=$(basename "$input_path")
2425
# strip last extension only (handles names like ceten-200.conll)

0 commit comments

Comments
 (0)