From f33bd3838f32b033a96854a06eddbf2168fbfced Mon Sep 17 00:00:00 2001 From: Guillaume Endignoux Date: Fri, 26 Jun 2020 11:07:09 +0200 Subject: [PATCH] Typo. --- .github/workflows/heapviz_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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