File tree Expand file tree Collapse file tree 1 file changed +35
-5
lines changed
Expand file tree Collapse file tree 1 file changed +35
-5
lines changed Original file line number Diff line number Diff line change @@ -49,14 +49,44 @@ jobs:
4949 run : |
5050 tend --version
5151
52+ homebrew-macos :
53+ runs-on : macos-latest
54+ steps :
55+ - name : Install
56+ run : |
57+ brew install lkurcak/tap/tend
58+
59+ - name : List installed packages
60+ run : |
61+ brew list
62+
63+ - name : Run
64+ run : |
65+ tend --version
66+
67+ homebrew-linux :
68+ runs-on : ubuntu-latest
69+ steps :
70+ - name : Install Homebrew
71+ run : |
72+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
73+ echo "/home/linuxbrew/.linuxbrew/bin" >> $GITHUB_PATH
74+
75+ - name : Install
76+ run : |
77+ brew install lkurcak/tap/tend
78+
79+ - name : List installed packages
80+ run : |
81+ brew list
82+
83+ - name : Run
84+ run : |
85+ tend --version
86+
5287 winget :
5388 runs-on : windows-latest
5489 steps :
55- - name : Install winget
56- uses : Cyberboss/install-winget@v1
57- with :
58- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
59-
6090 - name : Install
6191 run : |
6292 winget install lkurcak.tend --disable-interactivity --accept-source-agreements
You can’t perform that action at this time.
0 commit comments