We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64b69af commit f5da172Copy full SHA for f5da172
.github/workflows/test-scripts.yml
@@ -0,0 +1,26 @@
1
+name: Test Detection Scripts
2
+
3
+on:
4
+ push:
5
+ branches: [win-check]
6
7
+jobs:
8
+ test-unix:
9
+ strategy:
10
+ matrix:
11
+ os: [ubuntu-latest, macos-latest]
12
+ runs-on: ${{ matrix.os }}
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Run detection script
16
+ run: |
17
+ chmod +x detect-openclaw.sh
18
+ ./detect-openclaw.sh
19
20
+ test-windows:
21
+ runs-on: windows-latest
22
23
24
25
+ run: .\detect-openclaw.ps1
26
+ shell: powershell
0 commit comments