Fixed BeEquivalentTo
when using a custom comparer targeting nullabl…
#570
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, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
env: | |
DOTNET_NOLOGO: true | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDKs | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
2.1.x | |
3.1.x | |
6.0.x | |
7.0.x | |
- name: Run NUKE | |
run: ./build.ps1 | |
env: | |
NuGetApiKey: ${{ secrets.NUGETAPIKEY }} | |
- name: Check for 'lcov.info' existence | |
id: check_files | |
uses: andstor/file-existence-action@v2 | |
with: | |
files: "TestResults/reports/lcov.info" | |
- name: coveralls | |
uses: coverallsapp/github-action@v2 | |
if: steps.check_files.outputs.files_exists == 'true' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: TestResults/reports/lcov.info | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./Artifacts/* | |
only-unit-tests: | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, macos-12] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDKs | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
2.1.x | |
3.1.x | |
6.0.x | |
7.0.x | |
- name: Run NUKE | |
run: ./build.sh UnitTests |