commit c81561cee8bae10e6e70d07ce4305ca39fc2a9e4 from: Sergey Bronnikov date: Mon Mar 07 19:06:57 2022 UTC ci: add GH Actions CI wotkflow commit - e7a4f28498dabc5556d406a24275c47ef0da8829 commit + c81561cee8bae10e6e70d07ce4305ca39fc2a9e4 blob - /dev/null blob + bc5ee6eca0a86cc34e8d0afdd8a01d0b35645487 (mode 644) --- /dev/null +++ .github/workflows/macos.yml @@ -0,0 +1,18 @@ +on: [push] + +jobs: + test: + name: Testing homebrew formulas + runs-on: macos-latest + + steps: + - name: Checkout + uses: actions/checkout@v1 + + - run: brew update >/dev/null + + - run: brew audit ./Formula/*.rb + + - run: brew install -v ./Formula/*.rb + + - run: brew test ./Formula/*.rb