Add Slice to Csharp --enable-analysis #4096
Workflow file for this run
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 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: ["main"] | |
| jobs: | |
| matlab-analyzer: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup C++ | |
| uses: ./.github/actions/setup-cpp | |
| - name: Setup MATLAB | |
| uses: ./.github/actions/setup-matlab | |
| - name: Build MATLAB on Ubuntu | |
| uses: ./.github/actions/build | |
| timeout-minutes: 90 | |
| with: | |
| working_directory: "matlab" | |
| build_cpp_and_python: true | |
| - name: MATLAB Analyzer | |
| run: | | |
| $MATLAB_COMMAND code_analyzer | |
| working-directory: ./matlab/config | |
| shell: bash | |
| - name: Upload Analyzer Report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: matlab-analyzer-report | |
| path: ./matlab/config/result.json | |
| if-no-files-found: ignore | |
| if: always() |