Bump dependencies #1118
Workflow file for this run
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-5" | |
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/checkout@v4.1.7 | |
- uses: actions/setup-dotnet@v4.0.1 | |
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/codecov-action@v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
- name: Gather Test Results | |
uses: codecov/test-results-action@v1.0.0 | |
if: always() | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
resharper: | |
name: Resharper | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-dotnet@v4.0.1 | |
- run: dotnet restore | |
- run: dotnet build --configuration Release --no-restore /warnAsError /nologo /clp:NoSummary | |
- name: ReSharper annotations | |
uses: VMelnalksnis/resharper-inspect-action@v0.3.1 | |
with: | |
solution: NordigenDotNet.sln | |
resharper-version: 2023.3.0 | |
treat-warnings-as-errors: true |