Check Brewfile Validity #278
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 Brewfile Validity | |
on: | |
push: | |
schedule: | |
# every Sunday at 3:23am | |
- cron: '23 3 * * 0' | |
jobs: | |
brewfile-check: | |
# just checks against the public listings, so don't need to be on a mac | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Run Brewfile Audit | |
run: | | |
python ./utility/audit-brewfile.py | |