Skip to content

Commit 53bef3d

Browse files
committed
Verify OpenOCD startability with each commit
1 parent 4a9df86 commit 53bef3d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Verify openocd
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
verify-openocd:
7+
runs-on: macos-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: List dependencies
11+
run: otool -L ./bin/openocd
12+
- name: Try to run openocd
13+
run: ./bin/openocd --version || true

0 commit comments

Comments
 (0)