Added compilation guide for Apple Silicon to README.md. #11
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: build | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt install -y build-essential cmake libcppunit-dev | |
- name: Configure CMake | |
run: mkdir build && cd build && cmake ../src | |
- name: Building and testing | |
run: cd build && make -j3 && make test |