Add xUnit serializers for our types #1953
Workflow file for this run
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 | |
on: | |
push: | |
branches: [ main, release/** ] | |
pull_request: | |
branches: [ main, release/** ] | |
env: | |
DOTNET_NOLOGO: 1 | |
jobs: | |
build: | |
name: Build and Test | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
systemLinqAsync: [ '5.0.0', '6.0.1' ] | |
env: | |
SystemLinqAsyncVersion: ${{matrix.systemLinqAsync}} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
name: Install Current .NET SDK | |
- uses: actions/setup-dotnet@v4 | |
name: 'Install .NET SDK 8.0' | |
with: | |
dotnet-version: '8.0.x' | |
- uses: actions/setup-dotnet@v4 | |
name: 'Install .NET SDK 7.0' | |
with: | |
dotnet-version: '7.0.x' | |
- uses: actions/setup-dotnet@v4 | |
name: 'Install .NET SDK 6.0' | |
with: | |
dotnet-version: '6.0.x' | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore /p:TreatWarningsAsErrors=true | |
- name: Run Tests | |
run: dotnet test --configuration Release --no-build | |
trimming-test: | |
name: Trimming and AOT Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
name: Install Current .NET SDK | |
# Building the analyzers (the code fix projects in particular) for the linux runtime | |
# results in some super-old System.* packages with vulnerabilities being pulled in. | |
# Our analyzers don't do anything wrt. trimming and AOT so it's safe to disable them. | |
- name: Run trimming test | |
run: dotnet publish -c Release Funcky.TrimmingTest -r linux-x64 --self-contained /p:TreatWarningsAsErrors=true /p:FunckyDisableAnalyzers=true | |
- name: Run AOT test | |
run: dotnet publish -c Release Funcky.TrimmingTest -r linux-x64 --self-contained /p:TreatWarningsAsErrors=true /p:FunckyDisableAnalyzers=true /p:FunckyTestAot=true | |
nupkg: | |
name: Generate NuGet Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
name: Install Current .NET SDK | |
- name: Generate NuGet Packages | |
run: dotnet pack --output nupkg | |
- uses: actions/upload-artifact@v4 | |
if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) | |
with: | |
name: nupkg | |
path: nupkg/* | |
retention-days: 1 |