docs: Rewrite README to match EmbeddedSpaceWire structure and depth #9
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, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install build tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential cmake | |
| - name: Build | |
| run: make | |
| - name: Build and run C tests | |
| run: | | |
| make ctest | |
| if [ -x tests/ctest ]; then | |
| ./tests/ctest | |
| else | |
| echo "ctest binary missing"; exit 1 | |
| fi |