Adding jq and shunit2 dependencies to Github Actions. #5
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: brew install automake jq shunit2 | |
| - name: Run autoreconf | |
| run: autoreconf -fi | |
| - name: Run configure | |
| run: ./configure | |
| - name: Run make | |
| run: make | |
| - name: Run tests | |
| run: make check | |
| - name : Run make install | |
| run: make install |