feat: Add support for additional menus (#154) #193
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
| name: unit-tests | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| tags: | |
| - '*.*.*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| workflow_dispatch: | |
| jobs: | |
| unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install requirements | |
| run: | | |
| sudo pip3 install . | |
| - name: run unit-tests | |
| run: | | |
| mkdir test-dir | |
| cd test-dir | |
| cmake ../test | |
| git config --global init.defaultBranch master | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "Your Name" | |
| make | |
| ctest -V |