Skip to content

Update CI workflow with formatting and coverage#7

Merged
leynos merged 2 commits intomainfrom
codex/improve-github-ci-workflow-in-template
Jun 22, 2025
Merged

Update CI workflow with formatting and coverage#7
leynos merged 2 commits intomainfrom
codex/improve-github-ci-workflow-in-template

Conversation

@leynos
Copy link
Copy Markdown
Owner

@leynos leynos commented Jun 22, 2025

Summary

  • replace coverage workflow with a CI workflow
  • run format/lint/test steps
  • upload coverage data to CodeScene
  • mention new CI workflow in the template README

Testing

  • pip install -r requirements.txt
  • pytest -q
  • markdownlint README.md

https://chatgpt.com/codex/tasks/task_e_685833604f38832294c9ab9390c619cd

Summary by Sourcery

Update the project’s CI pipeline to replace the standalone coverage workflow with a unified CI workflow that runs formatting, linting, testing, and uploads coverage metrics to CodeScene, and update the README to reference the new workflow.

CI:

  • Replace the old coverage workflow with a single CI workflow that formats, lints, tests, and uploads coverage to CodeScene.
  • Configure the CI workflow to trigger on pushes and pull requests to the main branch and use shared actions for Rust setup and CodeScene uploads.

Documentation:

  • Update README to mention the new GitHub CI workflow and its steps.

Summary by CodeRabbit

  • Documentation

    • Updated the README to reflect changes in the continuous integration workflow and coverage reporting process.
  • Chores

    • Introduced a new continuous integration workflow that runs formatting, linting, testing, and uploads coverage metrics to CodeScene.
    • Removed the previous coverage workflow that reported to Codecov.

@sourcery-ai
Copy link
Copy Markdown

sourcery-ai Bot commented Jun 22, 2025

Reviewer's Guide

Introduce an integrated GitHub Actions CI pipeline that runs formatting, linting, testing, and coverage upload to CodeScene, replacing the old standalone coverage workflow and updating documentation accordingly.

Class diagram for CI workflow steps

classDiagram
    class CI_Workflow {
        +Format
        +Lint
        +Test
        +Coverage
        +UploadCoverage
    }
    CI_Workflow : Format() runs make check-fmt
    CI_Workflow : Lint() runs make lint
    CI_Workflow : Test() runs make test
    CI_Workflow : Coverage() runs cargo tarpaulin
    CI_Workflow : UploadCoverage() uploads to CodeScene
Loading

File-Level Changes

Change Details Files
Introduce unified CI workflow and remove legacy coverage job
  • Add ci.yml with setup, format, lint, test, and coverage steps
  • Integrate CodeScene upload conditional on CS_ACCESS_TOKEN
  • Configure triggers for push and pull_request on main
  • Remove the old coverage.yml workflow file
template/.github/workflows/ci.yml
template/.github/workflows/coverage.yml
Update documentation to reference new CI workflow
  • Replace README coverage section with CI workflow description
  • Update links and references to point at ci.yml
README.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jun 22, 2025

## Walkthrough

The continuous integration (CI) setup for the project was consolidated and updated. The previous dedicated coverage workflow using Codecov was removed and replaced with a new, broader CI workflow that performs formatting, linting, testing, and uploads coverage metrics to CodeScene. Documentation in the README was updated to reflect these changes.

## Changes

| File(s)                                         | Change Summary                                                                                          |
|-------------------------------------------------|--------------------------------------------------------------------------------------------------------|
| README.md                                       | Updated documentation to describe the new CI workflow and coverage upload to CodeScene.                |
| template/.github/workflows/ci.yml               | Added a new CI workflow: runs formatting, linting, tests, collects coverage, and uploads to CodeScene. |
| template/.github/workflows/coverage.yml         | Removed the old coverage workflow that uploaded reports to Codecov.                                    |

## Sequence Diagram(s)

```mermaid
sequenceDiagram
    participant Developer
    participant GitHub Actions
    participant Rust Toolchain
    participant CodeScene

    Developer->>GitHub Actions: Open PR to main
    GitHub Actions->>Rust Toolchain: Setup toolchain
    GitHub Actions->>GitHub Actions: Run formatting (make check-fmt)
    GitHub Actions->>GitHub Actions: Run linting (make lint)
    GitHub Actions->>GitHub Actions: Run tests (make test)
    GitHub Actions->>GitHub Actions: Install cargo-tarpaulin
    GitHub Actions->>GitHub Actions: Collect coverage (lcov)
    alt If CodeScene token available
        GitHub Actions->>CodeScene: Upload coverage data
    end

Possibly related PRs

Poem

A hop, a skip, a workflow anew,
From Codecov’s warren, to CodeScene we flew.
Linting and testing, our carrots align,
Coverage collected, the metrics now shine.
With every commit, our CI hops through—
🥕 Cheers to the changes, from this rabbit to you!


<!-- walkthrough_end -->


---

<details>
<summary>📜 Recent review details</summary>

**Configuration used: CodeRabbit UI**
**Review profile: ASSERTIVE**
**Plan: Pro**


<details>
<summary>📥 Commits</summary>

Reviewing files that changed from the base of the PR and between 0a9dbc6c558cdf1600aeab69bda9651dfc7139ea and 4c3f85e608ab94d161dca9e45d48115a114ffa27.

</details>

<details>
<summary>📒 Files selected for processing (2)</summary>

* `README.md` (1 hunks)
* `template/.github/workflows/ci.yml` (1 hunks)

</details>

<details>
<summary>🧰 Additional context used</summary>

<details>
<summary>🪛 YAMLlint (1.37.1)</summary>

<details>
<summary>template/.github/workflows/ci.yml</summary>

[warning] 3-3: truthy value should be one of [false, true]

(truthy)

---

[error] 38-38: too many blank lines

(1 > 0) (empty-lines)

</details>

</details>

</details>

<details>
<summary>🔇 Additional comments (3)</summary><blockquote>

<details>
<summary>template/.github/workflows/ci.yml (3)</summary>

`21-24`: **Segregated formatting and lint steps**  
Separating `make check-fmt` and `make lint` into distinct steps enhances clarity and simplifies debugging.

---

`25-26`: **Dedicated test step**  
Running `make test` before coverage collection ensures failures are caught early.

---

`27-30`: **Coverage collection consolidated**  
Installing `cargo-tarpaulin` and outputting in `lcov` format aligns perfectly with the CodeScene uploader’s requirements.

</details>

</blockquote></details>

</details>
<!-- internal state start -->


<!-- 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 -->

<!-- internal state end -->
<!-- finishing_touch_checkbox_start -->

<details open="true">
<summary>✨ Finishing Touches</summary>

<details open="true">
<summary>🧪 Generate Unit Tests</summary>

- [ ] <!-- {"checkboxId": "f47ac10b-58cc-4372-a567-0e02b2c3d479", "radioGroupId": "utg-output-choice-group-2994404400"} -->   Create PR with Unit Tests
- [ ] <!-- {"checkboxId": "07f1e7d6-8a8e-4e23-9900-8731c2c87f58", "radioGroupId": "utg-output-choice-group-2994404400"} -->   Post Copyable Unit Tests in Comment
- [ ] <!-- {"checkboxId": "6ba7b810-9dad-11d1-80b4-00c04fd430c8", "radioGroupId": "utg-output-choice-group-2994404400"} -->   Commit Unit Tests in branch `codex/improve-github-ci-workflow-in-template`

</details>

</details>

<!-- finishing_touch_checkbox_end -->
<!-- tips_start -->

---



<details>
<summary>🪧 Tips</summary>

### Chat

There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai?utm_source=oss&utm_medium=github&utm_campaign=leynos/agent-template-rust&utm_content=7):

- Review comments: Directly reply to a review comment made by CodeRabbit. Example:
  - `I pushed a fix in commit <commit_id>, please review it.`
  - `Explain this complex logic.`
  - `Open a follow-up GitHub issue for this discussion.`
- Files and specific lines of code (under the "Files changed" tab): Tag `@coderabbitai` in a new review comment at the desired location with your query. Examples:
  - `@coderabbitai explain this code block.`
  -	`@coderabbitai modularize this function.`
- PR comments: Tag `@coderabbitai` in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
  - `@coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.`
  - `@coderabbitai read src/utils.ts and explain its main purpose.`
  - `@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.`
  - `@coderabbitai help me debug CodeRabbit configuration file.`

### Support

Need help? Create a ticket on our [support page](https://www.coderabbit.ai/contact-us/support) for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

### CodeRabbit Commands (Invoked using PR comments)

- `@coderabbitai pause` to pause the reviews on a PR.
- `@coderabbitai resume` to resume the paused reviews.
- `@coderabbitai review` to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
- `@coderabbitai full review` to do a full review from scratch and review all the files again.
- `@coderabbitai summary` to regenerate the summary of the PR.
- `@coderabbitai generate docstrings` to [generate docstrings](https://docs.coderabbit.ai/finishing-touches/docstrings) for this PR.
- `@coderabbitai generate sequence diagram` to generate a sequence diagram of the changes in this PR.
- `@coderabbitai auto-generate unit tests` to generate unit tests for this PR.
- `@coderabbitai resolve` resolve all the CodeRabbit review comments.
- `@coderabbitai configuration` to show the current CodeRabbit configuration for the repository.
- `@coderabbitai help` to get help.

### Other keywords and placeholders

- Add `@coderabbitai ignore` anywhere in the PR description to prevent this PR from being reviewed.
- Add `@coderabbitai summary` to generate the high-level summary at a specific location in the PR description.
- Add `@coderabbitai` anywhere in the PR title to generate the title automatically.

### CodeRabbit Configuration File (`.coderabbit.yaml`)

- You can programmatically configure CodeRabbit by adding a `.coderabbit.yaml` file to the root of your repository.
- Please see the [configuration documentation](https://docs.coderabbit.ai/guides/configure-coderabbit) for more information.
- If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json`

### Documentation and Community

- Visit our [Documentation](https://docs.coderabbit.ai) for detailed information on how to use CodeRabbit.
- Join our [Discord Community](http://discord.gg/coderabbit) to get help, request features, and share feedback.
- Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.

</details>

<!-- tips_end -->

Copy link
Copy Markdown

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @leynos - I've reviewed your changes and they look great!

Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments

### Comment 1
<location> `template/.github/workflows/ci.yml:29` </location>
<code_context>
+        run: cargo install cargo-tarpaulin
+      - name: Run coverage
+        run: cargo tarpaulin --out lcov
+      - name: Upload coverage data to CodeScene
+        if: secrets.CS_ACCESS_TOKEN
+        uses: leynos/shared-actions/.github/actions/upload-codescene-coverage@v1.1.0
+        with:
+          format: lcov
+          access-token: ${{ secrets.CS_ACCESS_TOKEN }}
</code_context>

<issue_to_address>
The 'if: secrets.CS_ACCESS_TOKEN' condition may not work as intended.

Use 'if: ${{ secrets.CS_ACCESS_TOKEN }}' to ensure the condition is evaluated correctly and the step runs only when the secret is present.
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment thread template/.github/workflows/ci.yml
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🔭 Outside diff range comments (1)
template/.github/workflows/ci.yml (1)

36-37: Remove trailing blank line
YAMLlint flagged an extra blank line at the end of the file. Removing it will satisfy the empty-lines rule.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 103c5db and 0a9dbc6.

📒 Files selected for processing (3)
  • README.md (1 hunks)
  • template/.github/workflows/ci.yml (1 hunks)
  • template/.github/workflows/coverage.yml (0 hunks)
💤 Files with no reviewable changes (1)
  • template/.github/workflows/coverage.yml
🧰 Additional context used
🪛 LanguageTool
README.md

[style] ~20-~20: The serial comma (Oxford comma, Harvard comma) is missing.
Context: ...tHub CI workflow** that formats, lints, tests and uploads coverage metrics to CodeScene...

(SERIAL_COMMA_ON)

🪛 YAMLlint (1.37.1)
template/.github/workflows/ci.yml

[warning] 3-3: truthy value should be one of [false, true]

(truthy)


[error] 36-36: too many blank lines

(1 > 0) (empty-lines)

🔇 Additional comments (2)
template/.github/workflows/ci.yml (1)

30-36: Verify the CodeScene access token conditional
The if: secrets.CS_ACCESS_TOKEN guard skips the upload when the secret is undefined. Please ensure that CS_ACCESS_TOKEN is set in repository secrets and confirm that vars.CODESCENE_CLI_SHA256 is defined in your repo variables.

README.md (1)

24-25: Verify Codecov settings bullet
The template still mentions Codecov settings even though coverage is now uploaded to CodeScene. Confirm whether the Codecov configuration should be removed or updated to avoid confusion.

Comment thread template/.github/workflows/ci.yml
Comment thread template/.github/workflows/ci.yml
Comment thread README.md Outdated
@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Jun 22, 2025

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jun 22, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Jun 22, 2025

@sourcery-ai review

Copy link
Copy Markdown

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @leynos - I've reviewed your changes - here's some feedback:

  • Consider adding a caching step (using actions/cache) for Cargo registry and build artifacts to significantly speed up repeated CI runs.
  • Pin the tarpaulin version when installing (e.g. cargo install cargo-tarpaulin --version X.Y.Z) or leverage an official setup action to prevent unexpected updates from breaking the build.
  • You could simplify the workflow by using the actions-rs suite (e.g. actions-rs/toolchain and actions-rs/cargo-tarpaulin) instead of manual cargo install steps.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Consider adding a caching step (using actions/cache) for Cargo registry and build artifacts to significantly speed up repeated CI runs.
- Pin the tarpaulin version when installing (e.g. cargo install cargo-tarpaulin --version X.Y.Z) or leverage an official setup action to prevent unexpected updates from breaking the build.
- You could simplify the workflow by using the actions-rs suite (e.g. actions-rs/toolchain and actions-rs/cargo-tarpaulin) instead of manual cargo install steps.

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant