Added Github Actions#6
Open
matejstastny wants to merge 13 commits into
Open
Conversation
Open
alexrsing
reviewed
May 22, 2026
alexrsing
left a comment
There was a problem hiding this comment.
Looks good. I do think we should include testing frameworks into the ci pipeline, which should also be enforced throughout development of this repo. Frameworks like pytest and GTest, unless someone has other suggestions, would be good.
Author
|
That is a good idea, I am going to be entirely honest, I have zero expirience doing/writing tests, I have never done it before, but we should set it as a goal in the future. |
|
I agree with alex i think adding tests into CI makes the overall repo experience a little better we can immediately tell what PR's are off or what pushes cause issues. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
THT-416
This branch sets up the full CI/CD and code quality pipeline for the repo, covering C++, Python, shell scripts, documentation, and PR hygiene.
Clang Format Check (
.github/workflows/clang-format.yml)Runs on any push or PR that touches C/C++ source files (
.cpp,.cc,.cxx,.c,.h,.hpp,.hxx) or the.clang-formatconfig itself.Python Lint & Format Check (
.github/workflows/python-lint.yml)Runs on any push or PR touching
.pyfiles orpyproject.toml.Uses Ruff to enforce linting.
Note
Formatter configs are configured in #5, this is just CI
Shell Format Check (
.github/workflows/shell-format.yml)Runs on any push or PR touching
.shor.bashrcfiles.Uses shfmt to check that shell scripts are consistently formatted.
Deploy GitHub Pages (
.github/workflows/pages.yml)Runs on push to
mainwhen files underdocs/change, or manually viaworkflow_dispatch.Builds the Astro documentation site (
docs/) with Node 22 and deploys it to GitHub Pages.Stale PR & Issue Bot (
.github/workflows/stale.yml)Runs every Monday at 9am UTC, or manually via
workflow_dispatch.After 14 days of no activity, adds a
stalelabel and posts a warning comment. After 7 more days of silence, closes the issue or PR. Draft PRs and anything labelledpinned,security, orin-progressare exempt.Source folder scaffolding
Added
src-autonomy/andsrc-platform/just to make CI not fail. Only have a.gitkeep.TODO BEFORE MERGE
TRICKFIREBOT_PRIVATE_KEYneeds to be added to repo action secrets