feature/version-check (#2)
Some checks failed
test / test (push) Has been cancelled

Reviewed-on: #2
This commit is contained in:
2025-05-23 01:31:38 +00:00
parent 2785d64c02
commit fb7e640162
4 changed files with 38 additions and 32 deletions

View File

@@ -1,13 +1,10 @@
name: "test"
run-name: "test"
on:
push:
branches:
- master
on: push
jobs:
test:
runs-on: [smoketest]
runs-on: action
steps:
- uses: actions/checkout@v4
@@ -19,9 +16,8 @@ jobs:
- name: "run go install script"
shell: bash
env:
GO_INSTALL_COMMANDS: github.com/jake-young-dev/kelp@v0.0.9
GO_INSTALL_COMMANDS: code.jakeyoungdev.com/jake/mctl@v0.3.4
GO_INSTALL_ARCH: amd64
GO_INSTALL_PURGE: no
run: |
chmod +x install.sh
./install.sh
@@ -32,4 +28,4 @@ jobs:
- name: "check go installed command"
shell: bash
run: kelp -v | grep "kelp version v0.0.9"
run: mctl -v | grep "mctl version v0.3.4"