update rust ci script

This commit is contained in:
Caelan Sayler
2023-12-25 14:18:59 +00:00
parent 437c342bd9
commit 2e4db61f61
2 changed files with 3 additions and 3 deletions

View File

@@ -48,11 +48,11 @@ jobs:
- name: Build Rust
working-directory: src/Rust
run: cargo build --release
run: cargo build --release --features windows
- name: Test Rust
working-directory: src/Rust
run: cargo llvm-cov --cobertura --output-path ../../test/coverage.rust.xml
run: cargo llvm-cov --cobertura --features windows --output-path ../../test/coverage.rust.xml
- name: Build .NET
run: dotnet build -c Release

View File

@@ -1,10 +1,10 @@
pub mod download;
pub mod prerequisite;
pub mod runtimes;
pub mod splash;
mod self_delete;
mod shortcuts;
pub mod splash;
mod util;
pub use self_delete::*;