triseratops 0.0.3

The robust, in-depth Serato Parser & Serializer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Build
on: [push, pull_request]

jobs:
    build:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v1
            - name: Print Rust version
              run: rustc -vV
            - name: Run tests
              run: cargo test --all-features --verbose
            - name: Run bench
              run: cargo bench --all-features --verbose
            - name: Run doc
              run: cargo doc --all-features --verbose