Skip to content

Commit e10806a

Browse files
committed
Add sdk test in action
1 parent 67794df commit e10806a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/sdk.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: SDK tests
2+
3+
on:
4+
push:
5+
branches: [ master, next, dev-* ]
6+
pull_request:
7+
branches: [ master, next, dev-* ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
sdk-tests:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Install Rust
19+
uses: dtolnay/rust-toolchain@1.86
20+
with:
21+
components: clippy, rustfmt
22+
23+
- name: SDK tests
24+
run: cd sdk && ./run-tests.sh

0 commit comments

Comments
 (0)