Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(web-vis): overhaul visualisation of RRB vector using D3 #92

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 10 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,18 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
- uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: 1.42.0
toolchain: 1.68.1
components: rustfmt, clippy
override: true
- uses: actions-rs/cargo@v1
name: Checking code style
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
name: Running unit tests for the large branching factor
with:
command: test
args: --all
- uses: actions-rs/cargo@v1
name: Running unit tests for the small branching factor
with:
command: test
args: --all --features "small_branch"
- uses: actions-rs/cargo@v1
name: Running benchmarks as tests
with:
command: test
args: --benches
- name: Checking code style
run: cargo fmt --all -- --check
- name: Running unit tests for the large branching factor
run: cargo test --all
- name: Running unit tests for the small branching factor
run: cargo test --all --features "small_branch"
- name: Running benchmarks as tests
run: cargo test --benches
- name: Running memory benchmarks as tests
run: sh bench.sh
working-directory: benches-mem
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
.vscode/
target/
**/*.rs.bk
Cargo.lock
bin/
.DS_Store
Loading