Adds Bibtex for our paper to the README #1281
Workflow file for this run
This file contains 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
--- | |
name: Heapviz tool tests | |
on: | |
push: | |
paths: | |
- 'tools/heapviz/**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
heapviz_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install ncurses | |
run: sudo apt-get install libncurses-dev | |
- name: Check heapviz tool | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --manifest-path tools/heapviz/Cargo.toml | |
- name: Unit testing of heapviz tool (debug mode) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path tools/heapviz/Cargo.toml | |
- name: Unit testing of heapviz tool (release mode) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path tools/heapviz/Cargo.toml --release |