Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```