Skip to content

Port recent changes from private repository #4

Port recent changes from private repository

Port recent changes from private repository #4

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
build:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: cargo test --workspace
- name: Test with serde
run: cargo test --workspace --features serde
- name: Test with features
run: cargo test --workspace --features uuid,chrono,visitor
- name: Test with myers diff algo
run: cargo test --workspace --no-default-features --features vec_diff_myers
- name: Run example
run: cargo run --example visitor --features visitor