Skip to content

chore(ci): reuse cargo commands via composite actions#158

Merged
RAprogramm merged 1 commit intomainfrom
eye-of-ra/create-composite-actions-for-ci-commands
Sep 30, 2025
Merged

chore(ci): reuse cargo commands via composite actions#158
RAprogramm merged 1 commit intomainfrom
eye-of-ra/create-composite-actions-for-ci-commands

Conversation

@RAprogramm
Copy link
Owner

Summary

  • add composite GitHub Actions for cargo fmt, clippy, test, and audit workflows
  • update the reusable CI pipeline to invoke the new composites after shared setup
  • document the composites in the docs wiki so other workflows can reuse them

Testing

  • not run (ci configuration change only)

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

@RAprogramm RAprogramm merged commit d05c6e0 into main Sep 30, 2025
3 checks passed
@RAprogramm RAprogramm deleted the eye-of-ra/create-composite-actions-for-ci-commands branch September 30, 2025 03:48
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting

Comment on lines +190 to 197

- name: Security audit
uses: ./.github/actions/cargo-audit

- name: Auto-commit README changes (any branch)
if: always()
run: |
set -euo pipefail

Choose a reason for hiding this comment

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

[P0] Fix indentation on Auto-commit README step

The new workflow block after the composite actions has - name: Auto-commit README changes (any branch) followed by if: and run: at the same indentation level. In YAML the keys that belong to the step must be indented deeper than the dash; as written, if and run are parsed outside of the step and the workflow fails to load (unexpected key while parsing steps). The pre-existing version used correct indentation. Re‑indent if: and run: (and their bodies) so they are children of the list item.

Useful? React with 👍 / 👎.

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