Skip to main content
Deno 2 is finally here 🎉️
Learn more

Gradle Pipeline

fluentci pipeline deno module deno compatibility codecov

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

🚀 Usage

Run the following command:

fluentci run gradle_pipeline

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

fluentci init -t gradle

This will create a .fluentci folder in your project.

Now you can run the pipeline with:

fluentci run .

Or simply:

fluentci

Jobs

Job Description
check Check the project
test Run the tests
build Build the project
build(src: String!): String
check(src: String!): String
test(src: String!): String

Programmatic usage

You can also use this pipeline programmatically:

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

await check();
await test();
await build();