Brew formula update for evcc version 0.131.3 #195
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: Homebrew Tap | |
on: [push, pull_request] | |
jobs: | |
tap: | |
name: Tap | |
runs-on: macos-latest | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# See https://brew.sh | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
# https://github.com/marketplace/actions/cache | |
- name: Cache Bundler RubyGems | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.set-up-homebrew.outputs.gems-path }} | |
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} | |
restore-keys: ${{ runner.os }}-rubygems- | |
- name: Build | |
run: | | |
# - brew audit ./Formula/*.rb | |
brew install --build-bottle -v evcc | |
brew test evcc | |
# https://gist.github.com/maelvls/068af21911c7debc4655cdaa41bbf092 |