Skip to content

Add license

Add license #14

Workflow file for this run

name: Rust Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Test with no features (no doc tests)
run: cargo test --lib --tests
- name: Test with serde feature
run: cargo test -F serde