We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ebcd2 commit faaed30Copy full SHA for faaed30
.github/workflows/ci-rs.yml
@@ -24,16 +24,17 @@ jobs:
24
steps:
25
- uses: actions/checkout@v4
26
- name: Setup
27
+ run: make install-deps
28
+ - name: Build Native (tokio)
29
run: |
- make install-deps
30
+ echo "Trigger build.rs with tokio build"
31
export NVA_API_URL=$(cat $GITHUB_EVENT_PATH | jq -r ".inputs.nva_api_url" )
32
echo "::add-mask::$NVA_API_URL"
33
export NVA_API_TOKEN=$(cat $GITHUB_EVENT_PATH | jq -r ".inputs.nva_token" )
34
echo "::add-mask::$NVA_API_TOKEN"
- - name: Build wasm
35
+ make build-tokio
36
+ - name: Build WASM
37
run: make build-wasm
- - name: Build tokio
- run: make build-tokio
38
- name: Install Test Deps
39
run: cargo install --force cbindgen
40
- name: Run tests
0 commit comments