Release 25.4 (#105) #390
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 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: 8.0.x | |
framework: net8.0 | |
- dotnet-version: 9.0.x | |
framework: net9.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 }} |