Merge pull request #1 from redbadger/viktor/update-recent #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |