# This workflow will build a .NET project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net name: .NET on: push: pull_request: branches: [ main ] paths: - '**/*.cs' - '**/*.csproj' - '**/*.sln' jobs: build-and-test: name: test-${{matrix.os}}-${{matrix.dotnet-version}} runs-on: ${{ matrix.os }} strategy: matrix: dotnet-version: [ '6.0.x', '7.0.x' ] os: [ windows-latest, ubuntu-latest, macos-latest ] steps: - uses: actions/checkout@v3 with: fetch-depth: 0 # Get all history to allow automatic versioning using MinVer - name: Setup .NET uses: actions/setup-dotnet@v3 with: dotnet-version: ${{ matrix.dotnet-version }} - name: Restore dependencies run: dotnet restore - name: Build run: dotnet build -c Release --no-restore - name: Test run: dotnet test -c Release --no-build --verbosity normal