Skip to content

Commit 04f28b3

Browse files
committed
ci: fix yml syntax errors
1 parent 557d36c commit 04f28b3

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ name: LibSurgeon CI
22

33
on:
44
push:
5-
branches: [ '**' ]
65
pull_request:
7-
branches: [ '**' ]
86

97
jobs:
108
# ============================================================
@@ -158,13 +156,7 @@ jobs:
158156
159157
- name: Test architecture detection
160158
run: |
161-
python -c "
162-
from libsurgeon import detect_elf_architecture, ELF_MACHINE_MAP
163-
# Verify the mapping exists
164-
assert 0x28 in ELF_MACHINE_MAP, 'ARM should be in map'
165-
assert 0x3E in ELF_MACHINE_MAP, 'x86-64 should be in map'
166-
print('Architecture detection OK')
167-
"
159+
python -c "from libsurgeon import detect_elf_architecture, ELF_MACHINE_MAP; assert 0x28 in ELF_MACHINE_MAP, 'ARM should be in map'; assert 0x3E in ELF_MACHINE_MAP, 'x86-64 should be in map'; print('Architecture detection OK')"
168160
169161
- name: Test Ghidra decompilation of archive
170162
run: |

0 commit comments

Comments
 (0)