add path to manifest

This commit is contained in:
epwalsh
2019-12-13 13:56:39 -08:00
committed by MOI Anthony
parent 7f42417482
commit 4914e6285e

View File

@ -29,13 +29,13 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
args: --manifest-path ./tokenizers/Cargo.toml -- --check
- name: Lint with Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
args: --manifest-path ./tokenizers/Cargo.toml --all-targets --all-features -- -D warnings
- name: Run Tests
uses: actions-rs/cargo@v1