Rust Pipeline

fluentci pipeline deno module deno compatibility

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
build(src: String!): String
clippy(src: String!): String
test(src: String!): String

Programmatic usage

You can also use this pipeline programmatically:

import { build, test } from "https://pkg.fluentci.io/rust_pipeline@v0.6.2/mod.ts";

await test();
await build();