specit 0.2.0

Spec "it" for Rust testing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: CI

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-18.04
    steps:
      - uses: actions/checkout@v2
      - run: cargo build
      - run: cargo test
      - run: cargo test --features="tokio"
      - run: cargo test --features="async-std"
      - name: Install wasm-pack
        run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
      - run: wasm-pack test --node -- --features="lib-wasm-bindgen"
      - run: cargo test --features="full"