Fix Build #309
This file contains 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: Build & Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
dotnet-version: [ '6.0', '7.0', '8.0' ] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test | |
run: dotnet test --framework net${{ matrix.dotnet-version }} --collect:"XPlat Code Coverage" --no-restore --verbosity normal --logger trx --results-directory "TestResults-${{ matrix.os }} ${{ matrix.dotnet-version }}" | |
- name: Upload a Build Artifact | |
if: ${{ failure() || success() }} | |
uses: actions/[email protected] | |
with: | |
name: ${{ matrix.os }} ${{ matrix.dotnet-version }} | |
path: | | |
ArtNetTests/bin/*/net${{ matrix.dotnet-version }}/log.txt | |
TestResults-${{ matrix.os }} ${{ matrix.dotnet-version }} | |
ArtNetSharp/bin/Release/net${{ matrix.dotnet-version }}/ArtNetSharp.dll | |
retention-days: 2 | |
continue-on-error: true | |