Skip to content

A ready-to-use CI/CD Pipeline for your Clojure projects.

License

Notifications You must be signed in to change notification settings

fluent-ci-templates/clojure-pipeline

Repository files navigation

Clojure Pipeline

fluentci pipeline deno compatibility dagger-min-version codecov

A ready-to-use CI/CD Pipeline for your Clojure projects.

🚀 Usage

Run the following command:

fluentci run clojure_pipeline

Or, if you want to use it as a template :

fluentci init -t clojure

This will create a .fluentci folder in your project.

Now you can run the pipeline with:

fluentci run .

Or simply:

fluentci

Dagger Module

Use as a Dagger module:

dagger install github.com/fluent-ci-templates/clojure-pipeline@main

Jobs

Job Description
test Run the tests
uberjar Build an uberjar
uberjar(
  src: Directory | string
): Promise<Directory | string>

test(src: Directory | string): Promise<string>

Programmatic usage

You can also use this pipeline programmatically :

import { test, uberjar } from "jsr:@fluentci/clojure";

await test();
await uberjar();