Skip to content

Commit 58ebad9

Browse files
committed
Fix actions
1 parent 832cec1 commit 58ebad9

1 file changed

Lines changed: 13 additions & 6 deletions

File tree

.github/workflows/swift.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,19 @@ on:
1111

1212
jobs:
1313
build:
14-
1514
runs-on: macos-latest
1615

1716
steps:
18-
- uses: actions/checkout@v4
19-
- name: Build
20-
run: swift build -v
21-
- name: Run tests
22-
run: swift test -v
17+
- uses: actions/checkout@v4
18+
19+
# Package.swift depends on ../frida-swift (sibling directory)
20+
- name: Clone frida-swift
21+
run: |
22+
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

Comments
 (0)