66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
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@v3.1.0
|
|
- uses: actions/setup-dotnet@v3.0.3
|
|
with:
|
|
dotnet-version: |
|
|
3.1.x
|
|
5.0.x
|
|
6.0.x
|
|
7.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
|
|
env:
|
|
Nordigen__SecretId: ${{ secrets.NORDIGEN_SECRET_ID }}
|
|
Nordigen__SecretKey: ${{ secrets.NORDIGEN_SECRET_KEY }}
|
|
|
|
- name: Gather Code Coverage
|
|
if: github.event.schedule == null
|
|
uses: codecov/codecov-action@v3.1.1
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
fail_ci_if_error: true
|
|
|
|
resharper:
|
|
name: Resharper
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.1.0
|
|
- uses: actions/setup-dotnet@v3.0.3
|
|
- run: dotnet restore
|
|
- run: dotnet build --configuration Release --no-restore /warnAsError /nologo /clp:NoSummary
|
|
|
|
- name: ReSharper annotations
|
|
uses: VMelnalksnis/resharper-inspect-action@v0.2.5
|
|
with:
|
|
solution: NordigenDotNet.sln
|
|
resharper-version: 2022.3.0-eap09
|
|
treat-warnings-as-errors: true
|