Added accelerometer and gyro sensors #210
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: MATLAB CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: self-hosted | |
| strategy: | |
| matrix: | |
| release: [R2023b, R2025a] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test MATLAB is working | |
| run: matlab -batch "disp('MATLAB is working')" | |
| # Runs a set of commands using the runners shell | |
| - name: Run all tests | |
| uses: matlab-actions/run-tests@v2 | |
| with: | |
| source-folder: code |