Skip to content

Merge pull request #1 from redbadger/viktor/update-recent #7

Merge pull request #1 from redbadger/viktor/update-recent

Merge pull request #1 from redbadger/viktor/update-recent #7

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