Update NuGet Packages - Major Updates (major) #783
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: .NET Integration Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Check Out Code | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
- name: Restore Dependencies | |
run: dotnet restore src | |
- name: Build | |
run: dotnet build src --configuration Release --no-restore | |
- name: Set up Aerospike Database | |
uses: reugn/github-action-aerospike@v1.1.0 | |
- name: Integration Tests | |
run: | | |
cd ./tests/AeroSharp.IntegrationTests/ | |
dotnet test --no-restore -nodereuse:false \ | |
/p:UseSharedCompilation=false \ | |
/p:UseRazorBuildServer=false \ | |
/p:CollectCoverage=true \ | |
/p:CoverletOutputFormat=opencover \ | |
/p:CoverletOutput=/home/runner/work/AeroSharp/AeroSharp/ \ | |
# - name: Publish Code Coverage | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# files: /home/runner/work/AeroSharp/AeroSharp/coverage.net7.0.opencover.xml,/home/runner/work/AeroSharp/AeroSharp/coverage.net6.0.opencover.xml | |
# fail_ci_if_error: true |