Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hustcer/setup-bend
Use the bend lang in your Github Actions workflows
https://github.com/hustcer/setup-bend
Last synced: 25 days 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 (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T12:01:01.000Z (about 1 month ago)
- Last Synced: 2024-11-05T12:36:54.133Z (about 1 month ago)
- Language: Nushell
- Homepage:
- Size: 22.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
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)
[![Setup-Bend@Dev](https://github.com/hustcer/setup-bend/actions/workflows/basic.yml/badge.svg)](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)