Update formula for KDash release v0.4.8 #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
runs-on: ["macOS-latest", "ubuntu-latest"] | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install tools Linux | |
if: matrix.runs-on == 'ubuntu-latest' | |
shell: bash | |
run: | | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
(echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> /home/runner/.bash_profile | |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" | |
brew install --build-bottle --verbose Formula/kdash.rb | |
kdash -h | |
- name: Install tools Mac | |
if: matrix.runs-on == 'macOS-latest' | |
shell: bash | |
run: | | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
(echo; echo 'eval "$(/usr/local/bin/brew shellenv)"') >> /Users/runner/.bash_profile | |
eval "$(/usr/local/bin/brew shellenv)" | |
brew install --build-bottle --verbose Formula/kdash.rb | |
kdash -h |