Files
music-player/.fluentci/README.md
Tsiry Sandratraina 0c646e6c01 ci: setup fluent ci
2023-11-01 07:33:44 +00:00

1.3 KiB

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
build build your project
test Run your tests

Programmatic usage

You can also use this pipeline programmatically:

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

await test();
await build();