We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a9df86 commit 53bef3dCopy full SHA for 53bef3d
.github/workflows/verify_openocd.yml
@@ -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