Skip to content

Moved get_app_entry_name() from authorshipZome. #94

Moved get_app_entry_name() from authorshipZome.

Moved get_app_entry_name() from authorshipZome. #94

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
# Fetch source code
- name: Fetch source code
uses: actions/checkout@v2
# Install WASM
- name: Install WASM
shell: bash
run: |
rustup target install wasm32-unknown-unknown
# Build
- name: Build
run: |
cargo build
# Build WASM
- name: Build WASM
run: |
cargo build --release --target wasm32-unknown-unknown
- name: run tests
run: |
cargo test