Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kool-dev/action
Github Action to install kool.dev CLI
https://github.com/kool-dev/action
docker docker-compose github-actions github-ci kool
Last synced: about 1 month ago
JSON representation
Github Action to install kool.dev CLI
- Host: GitHub
- URL: https://github.com/kool-dev/action
- Owner: kool-dev
- Created: 2020-09-29T21:08:57.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-27T00:57:48.000Z (10 months ago)
- Last Synced: 2024-10-03T06:07:07.409Z (about 2 months ago)
- Topics: docker, docker-compose, github-actions, github-ci, kool
- Homepage: https://kool.dev
- Size: 5.86 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
Github Action to install [kool.dev](https://kool.dev) CLI tool.
Get `kool` to run on CI the environment just like you do locally.
For more information check [Kool.dev website](https://kool.dev) or [the CLI repository on Github](https://github.com/kool-dev/kool).
## Supported Runners
This action is only available for Linux and macOS [virtual environments](https://docs.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners#supported-virtual-environments-and-hardware-resources).
## Usage
Just use `kool-dev/action@v3` at your action YAML configuration file:
```yml
on: [push, workflow_dispatch]jobs:
ci:
name: CI
runs-on: ubuntu-lateststeps:
- uses: kool-dev/action@v3- name: Checking kool.dev Version
run: |
kool --version
kool start
# ...
```And you will get `kool` v3.x (latest version on the v3 series).