This commit is contained in:
Guillaume Endignoux
2020-06-26 11:07:09 +02:00
parent 31a8996ea5
commit f33bd3838f

View File

@@ -8,7 +8,7 @@ on:
types: [opened, synchronize, reopened] types: [opened, synchronize, reopened]
jobs: jobs:
cbor_test: heapviz_test:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -17,16 +17,16 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: check command: check
args: --manifest-path tool/heapviz/Cargo.toml args: --manifest-path tools/heapviz/Cargo.toml
- name: Unit testing of heapviz tool (debug mode) - name: Unit testing of heapviz tool (debug mode)
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: test command: test
args: --manifest-path tool/heapviz/Cargo.toml args: --manifest-path tools/heapviz/Cargo.toml
- name: Unit testing of heapviz tool (release mode) - name: Unit testing of heapviz tool (release mode)
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: test command: test
args: --manifest-path tool/heapviz/Cargo.toml --release args: --manifest-path tools/heapviz/Cargo.toml --release