Skip to main content

Go

Running the pre-built Go pipeline directly

Run the following command to run the pre-built Go pipeline without having to initialize a project:

fluentci run deno_pipeline

Add Deno Pipeline to your project

Run the following command to add Go pipeline to your project:

fluentci init -t go

This will create a .fluentci directory in your project, feel free to customize the pipeline for your needs. You can then run the following command to start the pipeline:

fluentci run .

Jobs

JobDescription
fmtFormat your code
testRun your tests
buildBuild your project

Programmatic usage

You can also use this pipeline programmatically:

import { fmt, test, build } from "https://pkg.fluentci.io/[email protected]/mod.ts";

await fmt();
await test();
await build();