We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeaeb1a commit d760114Copy full SHA for d760114
1 file changed
.github/workflows/determinism.yml
@@ -28,6 +28,20 @@ jobs:
28
- name: Clone test data
29
run: git clone --depth 1 https://github.com/MS2Community/MapleStory2-XML.git test-data
30
31
+ - name: Diagnose test data
32
+ shell: bash
33
+ run: |
34
+ echo "=== File count ==="
35
+ find test-data/Server -type f | wc -l
36
+ echo "=== First 10 files (sorted) ==="
37
+ find test-data/Server -type f | sort | head -10
38
+ echo "=== Sample file hash (raw) ==="
39
+ sha256sum test-data/Server/AI/AI_Anos.xml
40
+ echo "=== Sample file size ==="
41
+ wc -c test-data/Server/AI/AI_Anos.xml
42
+ echo "=== Sample file line endings ==="
43
+ xxd test-data/Server/AI/AI_Anos.xml | head -3
44
+
45
- name: Build
46
run: dotnet build MS2Tools.sln -c Release
47
0 commit comments