mirror of
https://github.com/extractions/setup-just
synced 2026-09-07 20:04:00 +00:00
This is technically a breaking change, but let's hope no one is actually using this action yet.
39 lines
1.1 KiB
Markdown
39 lines
1.1 KiB
Markdown
# `setup-just` action
|
|
|
|

|
|
|
|
This GitHub Action will install the latest release of the
|
|
[just](https://github.com/casey/just) command runner for you.
|
|
|
|
## Usage
|
|
|
|
### Inputs
|
|
|
|
| Name | Required | Description | Type | Default |
|
|
| -------------- | -------- | -------------------------------------------------------- | ------ | ------- |
|
|
| `just-version` | no | A valid semver specification for the version to install. | string | * |
|
|
|
|
|
|
### Basic example
|
|
|
|
Add the following to your workflow.
|
|
|
|
```yaml
|
|
- uses: extractions/setup-just@v1
|
|
with:
|
|
just-version: 0.5
|
|
env:
|
|
# this is not required but add it if you get any rate limiting issues
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
```
|
|
|
|
## License
|
|
|
|
Licensed under either of
|
|
|
|
- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
http://www.apache.org/licenses/LICENSE-2.0)
|
|
- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
at your option.
|