feat: DWN DataStore implementation #93
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
rust-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust Stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: llvm-tools-preview | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
- name: Install cargo-make | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
toolchain: stable | |
- name: Run CI | |
uses: actions-rs/cargo@v1 | |
env: | |
CARGO_MAKE_COVERAGE_PROVIDER: "grcov" | |
CARGO_MAKE_RUN_CODECOV: true | |
with: | |
command: make | |
args: workspace-ci-flow | |
toolchain: stable | |
wasm-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
- name: Install cargo-make (stable) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
- name: Build WASM library | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: build-wasm | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: Test WASM library against dwn-sdk-js | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: test-store-js |