votable 0.7.0

Rust implementation of a VOTable serializer/deserializer with support for format other than XML, such as JSON, TOML or YAML.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: TestLib

on: [push, workflow_dispatch]

jobs:
  test:
    name: Test on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, macOS-latest, windows-latest]
    steps:
    - uses: actions/checkout@v2
    - name: Run lib tests
      run: cargo test --workspace --verbose -- --nocapture 
    - name: Run lib tests with MIVOT feature
      run: cargo test --all-features --workspace --verbose -- --nocapture