kjuulh
a7656a9da1
Some checks reported errors
continuous-integration/drone/push Build was killed
Signed-off-by: kjuulh <contact@kjuulh.io>
21 lines
434 B
Rust
21 lines
434 B
Rust
use dagger_rust::{build::RustVersion, test::RustTest};
|
|
|
|
#[tokio::main]
|
|
pub async fn main() -> eyre::Result<()> {
|
|
dagger_sdk::connect(|client| async move {
|
|
RustTest::new(client.clone())
|
|
.test(
|
|
Some("testdata"),
|
|
RustVersion::Nightly,
|
|
&["crates/*"],
|
|
&["openssl"],
|
|
)
|
|
.await?;
|
|
|
|
Ok(())
|
|
})
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|