This GitHub Action will setup mq in your GitHub Actions workflow, allowing you to easily integrate mq into your CI/CD pipeline.
steps:
- uses: actions/checkout@v4
- name: Setup mq
uses: harehare/setup-mq@v1
with:
version: 'v0.1.0' # Optional: defaults to latest
- name: Run mq
run: echo "# Test" | mq '.h'You can install additional binaries from mq-XXX repositories using the bins option.
steps:
- uses: actions/checkout@v4
- name: Setup mq
uses: harehare/setup-mq@v1
with:
version: 'v0.1.0'
bins: 'foo,bar' # Installs binaries from mq-foo and mq-bar repositories
- name: Run mq
run: echo "# Test" | mq '.h'| Name | Description | Required | Default |
|---|---|---|---|
version |
mq version to install | No | Latest version |
bins |
Comma-separated list of additional binaries to install from mq-XXX repositories |
No | '' |
This GitHub Action is available under the MIT License.
Setup mq is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.