-
-
Notifications
You must be signed in to change notification settings - Fork 3
74 lines (64 loc) · 1.96 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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-22.04
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