Release 25.2 (#102) #376
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: .NET Core Linux | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| # See https://learn.microsoft.com/en-us/lifecycle/products/microsoft-net-and-net-core | |
| # and https://github.com/dotnet/core/blob/main/releases.md | |
| # for versions | |
| include: | |
| - dotnet-version: 3.1.x | |
| framework: netcoreapp3.1 | |
| - dotnet-version: 5.0.x | |
| framework: net5.0 | |
| - dotnet-version: 6.0.x | |
| framework: net6.0 | |
| - dotnet-version: 8.0.x | |
| framework: net8.0 | |
| continue-on-error: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup latest version of dotnet | |
| uses: actions/setup-dotnet@v4 | |
| - name: Build with latest version | |
| run: dotnet build --warnaserror Aspose.BarCode.Cloud.Sdk.sln | |
| - name: Setup ${{ matrix.dotnet-version }} version of dotnet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet-version }} | |
| - name: Test with ${{ matrix.dotnet-version }} | |
| run: dotnet test --verbosity normal --framework ${{ matrix.framework }} | |
| env: | |
| TEST_CONFIGURATION_JWT_TOKEN: ${{ secrets.TEST_CONFIGURATION_ACCESS_TOKEN }} |