Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Mar 5, 2024
1 parent 361bb16 commit 0b2564b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
19 changes: 14 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[![fluentci pipeline](https://img.shields.io/badge/dynamic/json?label=pkg.fluentci.io&labelColor=%23000&color=%23460cf1&url=https%3A%2F%2Fapi.fluentci.io%2Fv1%2Fpipeline%2Frust_pipeline&query=%24.version)](https://pkg.fluentci.io/rust_pipeline)
[![deno module](https://shield.deno.dev/x/rust_pipeline)](https://deno.land/x/rust_pipeline)
![deno compatibility](https://shield.deno.dev/deno/^1.37)
[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/rust-pipeline)](https://codecov.io/gh/fluent-ci-templates/rust-pipeline)
[![](https://jsr.io/badges/@fluentci/rust)](https://jsr.io/@fluentci/rust)
[![](https://img.shields.io/codecov/c/gh/fluent-ci-templates/rust-pipeline)](https://codecov.io/gh/fluent-ci-templates/rust-pipeline)


A ready-to-use CI/CD Pipeline for your Rust projects.
Expand Down Expand Up @@ -40,15 +40,24 @@ Now you can run the pipeline with:
fluentci run .
```

## Dagger Module
## 🧩 Dagger Module

Use as a [Dagger](https://dagger.io) Module:

```bash
dagger mod install github.com/fluent-ci-templates/rust-pipeline@mod
dagger install github.com/fluent-ci-templates/rust-pipeline@main
```

Call a function from the module:

```bash
dagger call clippy --src .
dagger call test --src .
dagger call llvm-cov --src .
dagger call build --src .
```

## Jobs
## Jobs

| Job | Description |
| -------- | ------------------------------- |
Expand Down Expand Up @@ -79,7 +88,7 @@ llvmCov(
): Promise<File | string>
```

## Programmatic usage
## 👨‍💻 Programmatic usage

You can also use this pipeline programmatically:

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluentci/rust",
"version": "0.9.0",
"version": "0.9.1",
"exports": "./mod.ts",
"importMap": "import_map.json",
"tasks": {
Expand Down

0 comments on commit 0b2564b

Please sign in to comment.