Run tests #1129
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: Run tests | |
on: | |
schedule: | |
- cron: "0 0 * * 1" | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- '**.md' | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
jobs: | |
run-tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
dotnet-version: | | |
3.1.x | |
5.0.x | |
6.0.x | |
7.0.x | |
8.0.x | |
- run: dotnet restore | |
- run: dotnet build --configuration Release --no-restore /warnAsError /nologo /clp:NoSummary | |
- name: Run Tests | |
run: dotnet test -p:CollectCoverage=true --configuration Release --no-build --logger:"junit;LogFilePath=TestResults/test-result.junit.xml" | |
env: | |
Nordigen__SecretId: ${{ secrets.NORDIGEN_SECRET_ID }} | |
Nordigen__SecretKey: ${{ secrets.NORDIGEN_SECRET_KEY }} | |
Logging__LogLevel__Default: "Warning" | |
- name: Gather Code Coverage | |
if: github.event.schedule == null | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
- name: Gather Test Results | |
uses: codecov/[email protected] | |
if: always() | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
resharper: | |
name: Resharper | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
- run: dotnet restore | |
- run: dotnet build --configuration Release --no-restore /warnAsError /nologo /clp:NoSummary | |
- name: ReSharper annotations | |
uses: VMelnalksnis/[email protected] | |
with: | |
solution: NordigenDotNet.sln | |
resharper-version: 2023.3.0 | |
treat-warnings-as-errors: true |