Merge pull request #41 from NavAbility/25Q1/deps/uuid12 #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wasm | |
run: make build-wasm | |
- name: Build tokio | |
run: make build-tokio | |
- name: Install Test Deps | |
run: cargo install --force cbindgen | |
- name: Run tests | |
run: | | |
make test-tokio | |
make generate-cbindgen-c | |
make generate-cbindgen-cpp | |
# make test-capi | |
env: | |
NVA_API_URL: "https://api.navability.io/graphql" |