{"id":28419276,"url":"https://github.com/fx31337/mql-compile-action","last_synced_at":"2025-07-24T13:05:56.131Z","repository":{"id":42776705,"uuid":"261267687","full_name":"FX31337/MQL-Compile-Action","owner":"FX31337","description":"Compiles MQL programs via GitHub Actions","archived":false,"fork":false,"pushed_at":"2024-08-22T13:58:34.000Z","size":3175,"stargazers_count":13,"open_issues_count":5,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-03T21:51:36.838Z","etag":null,"topics":["compile","forex","github-actions","metatrader","mql"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FX31337.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"issuehunt":"FX31337/MQL-Compile-Action"}},"created_at":"2020-05-04T18:43:51.000Z","updated_at":"2025-06-29T22:07:46.000Z","dependencies_parsed_at":"2024-04-24T00:26:29.030Z","dependency_job_id":"f262452d-8f7a-43c5-afd0-7d2b1f78496d","html_url":"https://github.com/FX31337/MQL-Compile-Action","commit_stats":{"total_commits":73,"total_committers":4,"mean_commits":18.25,"dds":0.3835616438356164,"last_synced_commit":"a50027ae2a66b77c0d9e195dec6d91c56cf57c99"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/FX31337/MQL-Compile-Action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FX31337%2FMQL-Compile-Action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FX31337%2FMQL-Compile-Action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FX31337%2FMQL-Compile-Action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FX31337%2FMQL-Compile-Action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FX31337","download_url":"https://codeload.github.com/FX31337/MQL-Compile-Action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FX31337%2FMQL-Compile-Action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265445338,"owners_count":23766448,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["compile","forex","github-actions","metatrader","mql"],"created_at":"2025-06-04T17:13:04.596Z","updated_at":"2025-07-15T16:34:56.488Z","avatar_url":"https://github.com/FX31337.png","language":"JavaScript","funding_links":["https://issuehunt.io/r/FX31337/MQL-Compile-Action"],"categories":[],"sub_categories":[],"readme":"# MQL Compile Action\n\n[![Release][github-release-image]][github-release-link]\n[![Status][gha-image-action-master]][gha-link-action-master]\n[![Status][gha-image-lint-master]][gha-link-lint-master]\n[![Status][gha-image-test-master]][gha-link-test-master]\n[![Telegram Channel][tg-channel-image]][tg-channel-link]\n[![Telegram Chat][tg-chat-image]][tg-chat-link]\n[![Edit][gh-edit-badge]][gh-edit-link]\n\nThis GitHub Action compiles MQL programs.\n\nFor full documentation, please read: [GitHub Actions Documentation](https://help.github.com/en/actions).\n\n## Usage\n\nThis action is only supported on [Windows images](https://github.com/actions/virtual-environments).\n\n### Latest release\n\n```yaml\nruns-on: windows-latest\nsteps:\n  - uses: fx31337/mql-compile-action@v2\n```\n\n### Specific release\n\n```yaml\nruns-on: windows-latest\nsteps:\n  - uses: fx31337/mql-compile-action@v2.0.0\n```\n\nNote: Check *Releases* for more details.\n\n### Latest development version\n\n```yaml\nruns-on: windows-latest\nsteps:\n  - uses: fx31337/mql-compile-action@master\n```\n\n### Overriding default inputs\n\n```yaml\nruns-on: windows-latest\nsteps:\n  - uses: fx31337/mql-compile-action@master\n    with:\n        path: 'path/Dummy.mq5'\n        include: '.'\n        log-file: 'results.log'\n        ignore-warnings: true\n        mt-path: my/platform/path\n        verbose: true\n```\n\n*Note: From v2 releases, this action doesn't install platform by default.*\n\n## Inputs\n\n### `path` (string)\n\nPath to folder or file to compile.\n\nDefault: `.` (all files in the current folder are compiled).\n\n### `path-ignore` (string)\n\nPath to folder or file for compiler to ignore.\n\nDefault: `**/*.mqh` (all .mqh files are ignored by default).\n\n### `include` (string)\n\nPath to search for includes files.\n\nDefault: ``.\n\n### `mt-path` (string)\n\nPlatform path to use. Default: `.`.\n\n### `ignore-warnings` (bool)\n\nWhether to ignore compilation warnings.\n\n### `log-file` (string)\n\nSpecifies log filename for compilation messages.\n\n### `syntax-only` (bool)\n\nWhether to skip generating binary file and only check for syntax issues. Default: *false*.\n\n### `init-platform` (bool)\n\nWhether to run terminal(64).exe which downloads general-purpose MQL4/5 includes, example scripts and EAs.\n\nIt is required if you want to use e.g., `#include \u003cArrays/Array.mqh\u003e` and so on.\n\n### `verbose` (bool)\n\nEnables verbose mode (to print more messages). Default: *false*.\n\n### `working-directory` (string)\n\nSets working directory where to run commands. Default: *.*.\n\n### Support\n\n- For bugs/features, raise a [new issue at GitHub](https://github.com/EA31337/MQL-Compile-Action/issues).\n- Join our [Telegram group](https://t.me/EA31337) and [channel](https://t.me/EA31337_Announcements) for help.\n\n\u003c!-- Named links --\u003e\n\n[github-release-image]: https://img.shields.io/github/release/FX31337/MQL-Compile-Action.svg?logo=github\n[github-release-link]: https://github.com/FX31337/MQL-Compile-Action/releases\n\n[gh-edit-badge]: https://img.shields.io/badge/GitHub-edit-purple.svg?logo=github\n[gh-edit-link]: https://github.dev/FX31337/MQL-Compile-Action\n\n[tg-channel-image]: https://img.shields.io/badge/Telegram-news-0088CC.svg?logo=telegram\n[tg-channel-link]: https://t.me/EA31337_News\n[tg-chat-image]: https://img.shields.io/badge/Telegram-chat-0088CC.svg?logo=telegram\n[tg-chat-link]: https://t.me/EA31337\n\n[gha-link-action-master]: https://github.com/FX31337/MQL-Compile-Action/actions?query=workflow%3AAction+branch%3Amaster\n[gha-image-action-master]: https://github.com/FX31337/MQL-Compile-Action/workflows/Action/badge.svg\n[gha-link-lint-master]: https://github.com/FX31337/MQL-Compile-Action/actions?query=workflow%3ALint+branch%3Amaster\n[gha-image-lint-master]: https://github.com/FX31337/MQL-Compile-Action/workflows/Lint/badge.svg\n[gha-link-test-master]: https://github.com/FX31337/MQL-Compile-Action/actions?query=workflow%3ATest+branch%3Amaster\n[gha-image-test-master]: https://github.com/FX31337/MQL-Compile-Action/workflows/Test/badge.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffx31337%2Fmql-compile-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffx31337%2Fmql-compile-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffx31337%2Fmql-compile-action/lists"}