Merge pull request #149 from kmatzen/docs/issue-103-serial-disconnect… #156
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libasound2-dev | |
| - name: Build simulator | |
| working-directory: host | |
| run: make simulator | |
| - name: Run scenario tests | |
| working-directory: host | |
| run: make test |