Skip to main content

Elixir

Running the pre-built Elixir pipeline directly

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

fluentci run elixir_pipeline

Add Elixir Pipeline to your project

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

fluentci init -t elixir

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
testRun your tests

Programmatic usage

You can also use this pipeline programmatically:

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

await test();