You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Github Action to install [kool.dev](https://kool.dev) CLI.
3
+
Github Action to install [kool.dev](https://kool.dev) CLI tool.
4
4
5
-
For more information check https://kool.dev or https://github.com/kool-dev/kool.
5
+
Get `kool` to run on CI the environment just like you do locally.
6
+
7
+
For more information check [Kool.dev website](https://kool.dev) or [the CLI repository on Github](https://github.com/kool-dev/kool).
6
8
7
9
## Supported Runners
8
10
9
11
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).
10
12
11
13
## Usage
12
14
13
-
Just use `kool-dev/action@v1` at your action YAML configuration file:
15
+
Just use `kool-dev/action@v3` at your action YAML configuration file:
14
16
15
17
```yml
16
18
on: [push, workflow_dispatch]
@@ -21,8 +23,13 @@ jobs:
21
23
runs-on: ubuntu-latest
22
24
23
25
steps:
24
-
- uses: kool-dev/action@v1
26
+
- uses: kool-dev/action@v3
25
27
26
28
- name: Checking kool.dev Version
27
-
run: kool --version
29
+
run: |
30
+
kool --version
31
+
kool start
32
+
# ...
28
33
```
34
+
35
+
And you will get `kool` v3.x (latest version on the v3 series).
0 commit comments