Conversation
There was a problem hiding this comment.
Pull request overview
Updates the top-level documentation in README.md to reflect newer GitHub Actions usage and expanded ecosystem links.
Changes:
- Bumps the GitHub Actions example to
actions/checkout@v6. - Adds new language binding links for Java and Go.
- Adjusts external tool links for
mq-checkandmq-lspto point at their README files.
| - [mq-check](https://github.com/harehare/mq/tree/main/crates/mq-check/README.md) - A syntax and semantic checker for mq files. | ||
| - [mq-conv](https://github.com/harehare/mq-conv) - A CLI tool for converting various file formats to Markdown. | ||
| - [mq-docs](https://github.com/harehare/mq-docs) - A documentation generator for mq functions, macros, and selectors. | ||
| - [mq-edit](https://github.com/harehare/mq-edit) - A terminal-based Markdown and code editor with WYSIWYG rendering and LSP support. | ||
| - [mq-lsp](https://github.com/harehare/mq/tree/main/crates/mq-lsp) - Language Server Protocol (LSP) implementation for mq query files, providing IDE features like completion, hover, and diagnostics. | ||
| - [mq-lsp](https://github.com/harehare/mq/tree/main/crates/mq-lsp/README.md) - Language Server Protocol (LSP) implementation for mq query files, providing IDE features like completion, hover, and diagnostics. |
There was a problem hiding this comment.
The GitHub URL uses tree/.../README.md, which is intended for directories and may 404 or show a directory listing. For linking directly to a file, switch to blob/main/crates/mq-check/README.md (and similarly for mq-lsp) to ensure the links work consistently with the rest of the README (e.g., the editors/neovim/README.md link uses blob).
| ### GitHub Actions | ||
|
|
||
| You can use mq in your GitHub Actions workflows with the [Setup mq](https://github.com/marketplace/actions/setup-mq) action: | ||
|
|
||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v6 | ||
| - uses: harehare/setup-mq@v1 | ||
| - run: mq '.code' README.md |
There was a problem hiding this comment.
This updates the Actions snippet to actions/checkout@v6, but the same snippet in docs/books/src/start/install.md still uses actions/checkout@v4, so the documentation is now inconsistent. Please update the book page to match, or (if v6 isn’t intended there) revert this README change to keep them in sync.
No description provided.