Skip to content

Commit e3b06ed

Browse files
committed
Add simple workflow to generate Swift bindings in CI
We add a simple workflows to generate the Swift bindings in CI, ensuring the build is succeeding.
1 parent 1a134b4 commit e3b06ed

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/swift.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI Checks - Swift Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
check-kotlin:
7+
runs-on: macos-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Set default Rust version to stable
14+
run: rustup default stable
15+
16+
- name: Generate Swift bindings
17+
run: ./scripts/uniffi_bindgen_generate_swift.sh

0 commit comments

Comments
 (0)