v0.8.0
A ready-to-use CI/CD Pipeline for Rust projects.
Attributes
Includes Deno configuration
Repository
Current version released
a year ago
Dependencies
deno.land/x
other
skypack.dev
lodash
Rust Pipeline
A ready-to-use CI/CD Pipeline for your Rust projects.
🚀 Usage
Run the following command in your Rust Project:
fluentci run rust_pipeline
Or if you want to run specific jobs:
fluentci run rust_pipeline test build
if you want to use it as a template:
fluentci init -t rust
This will create a .fluentci
folder in your project.
Now you can run the pipeline with:
fluentci run .
Jobs
Job | Description |
---|---|
clippy | Run Rust Clippy on your project |
build | Build your project |
test | Run your tests |
llvm_cov | Generate llvm coverage report |
build(src: String!): String
clippy(src: String!): String
test(src: String!): String
llvmCov(src: String!): String
Programmatic usage
You can also use this pipeline programmatically:
import { build, test } from "https://pkg.fluentci.io/rust_pipeline@v0.8.0/mod.ts";
await test();
await build();