Skip to content

Upgrade Xunit runner & fluentassertions #87

Upgrade Xunit runner & fluentassertions

Upgrade Xunit runner & fluentassertions #87

Workflow file for this run

name: .NET Core Build
on:
push:
branches:
- '**' # match all branches, including with '/'
- '!master' # except master
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
build-config: [ Debug, Release ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.*
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration ${{ matrix.build-config }} --no-restore
- name: Test
run: |
dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.System/Test.AMT.Extensions.System.csproj
dotnet test --configuration ${{ matrix.build-config }} --no-restore --verbosity normal ./Test.AMT.Extensions.Linq/Test.AMT.Extensions.Linq.csproj
# NOTE: does not test /Test.AMT.Extensions.Logging at GitHub b/c fails w/IP port comms.