Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikeee/setup-hurl
Set up your GitHub Actions workflow with a specific version of Hurl
https://github.com/nikeee/setup-hurl
action actions http hurl testing
Last synced: about 2 months ago
JSON representation
Set up your GitHub Actions workflow with a specific version of Hurl
- Host: GitHub
- URL: https://github.com/nikeee/setup-hurl
- Owner: nikeee
- License: mit
- Created: 2022-01-20T11:40:25.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-05T15:13:14.000Z (10 months ago)
- Last Synced: 2024-05-01T14:07:49.323Z (9 months ago)
- Topics: action, actions, http, hurl, testing
- Homepage:
- Size: 91.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# setup-hurl
A GitHub Action to set up [Hurl](https://github.com/Orange-OpenSource/hurl).## Getting Started
```yaml
- uses: nikeee/setup-hurl@v2
- run: hurl --version
```By default, the [latest GitHub Release of Hurl](https://github.com/Orange-OpenSource/hurl/releases) will be used. If you need a specific version, you can pass a semver specifier:
```yaml
- uses: nikeee/setup-hurl@v2
with:
hurl-version: ^4.1.0
- run: hurl --version
```