Try --roll-forward
#123
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: Continuous Integration | |
| on: | |
| push: | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| name: Build ${{ matrix.name }} ${{ matrix.configuration }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| name: [Windows x64, Windows x86, Linux x64, Linux ARM64, MacOS x64, MacOS ARM64] | |
| configuration: [Release, Debug] | |
| include: | |
| - name: Windows x64 | |
| os: windows-latest | |
| - name: Windows x86 | |
| os: windows-latest | |
| additional_args: -a x86 | |
| - name: Linux x64 | |
| os: ubuntu-24.04 | |
| - name: Linux ARM64 | |
| os: ubuntu-24.04-arm | |
| - name: MacOS x64 | |
| os: macos-13 | |
| - name: MacOS ARM64 | |
| os: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v4 | |
| - run: dotnet test --roll-forward LatestMajor AssimpNet.Test -c ${{ matrix.configuration }} ${{ matrix.additional_args }} | |