Skip to content

Commit c48b5e1

Browse files
committed
fix: add UTF-8 encoding when opening summary file in test workflow
1 parent 57f6c31 commit c48b5e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test-python-bindings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ jobs:
263263
264264
summary_file = os.environ.get('GITHUB_STEP_SUMMARY', '/dev/null')
265265
266-
with open(summary_file, 'a') as f:
266+
with open(summary_file, 'a', encoding='utf-8') as f:
267267
f.write("## 🧪 Test Results: arcadedb-embedded (${{ matrix.platform }})\n")
268268
f.write("\n")
269269

0 commit comments

Comments
 (0)