jtd 0.3.1

A Rust implementation of JSON Type Definition
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
on: push
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Checkout submodules
        shell: bash
        run: |
          auth_header="$(git config --local --get http.https://github.com/.extraheader)"
          git submodule sync --recursive
          git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
      - run: cargo test