There was an error while loading. Please reload this page.
1 parent 832cec1 commit 58ebad9Copy full SHA for 58ebad9
1 file changed
.github/workflows/swift.yml
@@ -11,12 +11,19 @@ on:
11
12
jobs:
13
build:
14
-
15
runs-on: macos-latest
16
17
steps:
18
- - uses: actions/checkout@v4
19
- - name: Build
20
- run: swift build -v
21
- - name: Run tests
22
- run: swift test -v
+ - uses: actions/checkout@v4
+
+ # Package.swift depends on ../frida-swift (sibling directory)
+ - name: Clone frida-swift
+ run: |
+ cd ..
23
+ git clone https://github.com/micheltlutz/frida-swift.git frida-swift
24
25
+ - name: Build
26
+ run: swift build -v
27
28
+ - name: Run tests
29
+ run: swift test -v
0 commit comments