differential-dataflow-master 0.13.0-dev.1

An incremental data-parallel dataflow platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: test

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-22.04
    steps:
    - uses: actions/checkout@v3
    - run: rustup update 1.70 --no-self-update && rustup default 1.70
    - run: cargo build --workspace
    - name: test mdBook
      # rustdoc doesn't build dependencies, so it needs to run after `cargo build`,
      # but its dependency search gets confused if there are multiple copies of any
      # dependency in target/debug/deps, so it needs to run before `cargo test` et al.
      # clutter target/debug/deps with multiple copies of things.
      run: for file in $(find mdbook -name '*.md' | sort); do rustdoc --test $file  -L ./target/debug/deps; done
    - run: cargo test --workspace