[#591] Test #953
Workflow file for this run
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: Check homebrew formulas | |
on: | |
# Run on any push which changes related files | |
push: | |
paths: | |
- 'Formula/*.rb' | |
- '.github/workflows/check-formulas.yml' | |
jobs: | |
check-formulas: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Check formula syntax | |
run: ruby -c ./Formula/*.rb | |
- name: Check formula source | |
# All formulas share the same source URL, so it's fine to fetch sources | |
# for only one formula | |
run: brew fetch --formula -s ./Formula/tezos-client.rb |