diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index d3a1a0dc..1bdb6835 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -47,7 +47,7 @@ jobs: - name: Check fmt run: cargo fmt --all -- --check - name: Run clippy - run: cargo clippy -p ort --all-targets --workspace --features fetch-models + run: cargo clippy -p voicevox-ort --all-targets --workspace --features fetch-models coverage: name: Code coverage runs-on: ubuntu-latest @@ -71,7 +71,7 @@ jobs: run: cargo install cargo-tarpaulin - name: Generate code coverage run: | - cargo tarpaulin -p ort --features fetch-models --verbose --timeout 120 --out xml + cargo tarpaulin -p voicevox-ort --features fetch-models --verbose --timeout 120 --out xml - name: Upload to codecov.io uses: codecov/codecov-action@v3 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 40d42835..3dd0d1f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: - uses: Swatinem/rust-cache@v1 - name: Run tests run: | - cargo test -p ort --verbose --features fetch-models -- --test-threads 1 + cargo test -p voicevox-ort --verbose --features fetch-models -- --test-threads 1 cross-compile: name: Cross-platform compile runs-on: ${{ matrix.platform.os }} @@ -74,4 +74,4 @@ jobs: - name: Build/test run: | cargo install cross --git https://github.com/cross-rs/cross - cross test -p ort --features fetch-models --target aarch64-unknown-linux-gnu -v + cross test -p voicevox-ort --features fetch-models --target aarch64-unknown-linux-gnu -v