Merge pull request #210 from SpinW/more_usability_improvements_sw_fit… #489
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: SpinW Tests | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master, development] | |
| types: [opened, reopened, synchronize] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| matlab_version: [latest] | |
| include: | |
| - os: ubuntu-latest | |
| matlab_version: R2021a | |
| - os: macos-latest | |
| INSTALL_DEPS: brew install llvm libomp | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out SpinW | |
| uses: actions/checkout@v4 | |
| - name: Install Dependencies | |
| run: ${{ matrix.INSTALL_DEPS }} | |
| - name: Set up MATLAB | |
| uses: matlab-actions/setup-matlab@v2 | |
| with: | |
| release: ${{ matrix.matlab_version }} | |
| - name: Set GCC version on Linux | |
| if: ${{ matrix.os == 'ubuntu-latest' }} | |
| run: | | |
| sudo apt install -y gcc-12 g++-12 | |
| sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 | |
| sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10 | |
| - name: Run tests | |
| uses: matlab-actions/run-command@v2 | |
| with: | |
| command: "run run_tests.m" | |
| - uses: codecov/codecov-action@v4 | |
| if: ${{ always() && matrix.os == 'ubuntu-latest' && matrix.matlab_version == 'latest' }} | |
| with: | |
| files: coverage*.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Unit test results ${{ matrix.os }}-${{ matrix.matlab_version }} | |
| path: junit_report*.xml | |
| #- name: Setup tmate | |
| # if: ${{ failure() }} | |
| # uses: mxschmitt/action-tmate@v3 | |
| publish-test-results: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| if: success() || failure() | |
| steps: | |
| - name: Download Artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: artifacts | |
| - name: Publish test results | |
| uses: EnricoMi/publish-unit-test-result-action@v2 | |
| with: | |
| junit_files: artifacts/**/junit_report*.xml |