Adding Github Action badge to README. #8
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
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 make install | |
run: DESTDIR="./install-test/" make install |