Browse and listen to thousands of radio stations across the globe right from your terminal ๐ ๐ป ๐ตโจ
radio
rust
tokio
web-radio
command-line-tool
tui
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 |
|---|---|
| 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();