https://github.com/hustcer/setup-bend
Use the bend lang in your Github Actions workflows
https://github.com/hustcer/setup-bend
Last synced: about 1 month ago
JSON representation
Use the bend lang in your Github Actions workflows
- Host: GitHub
- URL: https://github.com/hustcer/setup-bend
- Owner: hustcer
- License: mit
- Created: 2024-06-09T12:29:12.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-01-06T03:40:37.000Z (3 months ago)
- Last Synced: 2025-01-19T16:12:07.906Z (3 months ago)
- Language: Nushell
- Homepage:
- Size: 30.3 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nu - setup-bend Action
README
# Setup Bend Action
[中文说明](README.zh-CN.md)
[](https://github.com/hustcer/setup-bend/actions/workflows/basic.yml)
This GitHub Action will setup a [Bend](https://github.com/HigherOrderCO/Bend) environment for you. It should work on Github `macos`, `ubuntu`, and `Windows` runners.
## Usage
### Basic
It's quite simple to use `hustcer/setup-bend`, just follow the example below:
```yaml
steps:
- name: Checkout
uses: actions/checkout@v4- name: Setup Bend
uses: hustcer/setup-bend@v1- name: Check Bend Version
run: |
bend --version```
Or, check the [test.yaml](https://github.com/hustcer/setup-bend/blob/main/.github/workflows/test.yml) example.
In rare circumstances you might get rate limiting errors, if this happens you can set the `GITHUB_TOKEN` environment variable.
```yaml
- uses: hustcer/setup-bend@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```### Inputs
Currently no input required
## License
Licensed under:
- MIT license ([LICENSE](LICENSE) or http://opensource.org/licenses/MIT)