diff --git a/.github/workflows/heapviz_test.yml b/.github/workflows/heapviz_test.yml index 56f9b8c..08f4808 100644 --- a/.github/workflows/heapviz_test.yml +++ b/.github/workflows/heapviz_test.yml @@ -8,7 +8,7 @@ on: types: [opened, synchronize, reopened] jobs: - cbor_test: + heapviz_test: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 @@ -17,16 +17,16 @@ jobs: uses: actions-rs/cargo@v1 with: command: check - args: --manifest-path tool/heapviz/Cargo.toml + 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 tool/heapviz/Cargo.toml + 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 tool/heapviz/Cargo.toml --release + args: --manifest-path tools/heapviz/Cargo.toml --release