We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 404dfe5 commit 6226ba5Copy full SHA for 6226ba5
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: Build test
2
+
3
+on:
4
+ push:
5
+ branches: [main, master]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ name: Test build
13
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ - name: Setup OpenHarmony SDK
19
+ uses: openharmony-rs/setup-ohos-sdk@v0.2
20
+ id: setup-ohos
21
+ with:
22
+ version: "5.0.0"
23
24
+ - name: Setup Zig for OpenHarmony
25
+ uses: openharmony-zig/setup-zig-ohos@v0.1.0
26
+ id: setup-zig
27
28
+ - name: Build
29
+ run: |
30
+ zig build
README.md
@@ -2,6 +2,8 @@
A simple ping implement by zig.
+> Note: This is an experiential project, if you want a stable version, please use `@ohos-rs/ping`.
## Usage
```ts
0 commit comments