jsonbox 0.2.0

Rust wrapper for jsonbox.io
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
name: build
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Build
        run: cargo build --verbose
      - name: Build examples
        run: cargo build --example basic && cargo build --example errors && cargo build --example hello
      - name: Run tests
        run: cargo test --verbose