Skip to content

Commit 7c15cea

Browse files
author
Paul HAMADOU
committed
Initial Commit
0 parents  commit 7c15cea

File tree

179 files changed

+6996
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+6996
-0
lines changed

.github/dependabot.yaml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "nuget"
5+
# Targeted directory, it will look for any csProj file recursively.
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+
day: "wednesday"
10+
groups:
11+
microsoft:
12+
patterns:
13+
- "Microsoft*"
14+
update-types:
15+
- "minor"
16+
- "patch"
17+
hangfire:
18+
patterns:
19+
- "Hangfire*"
20+
update-types:
21+
- "minor"
22+
- "patch"
23+
xunit:
24+
patterns:
25+
- "xunit*"
26+
update-types:
27+
- "minor"
28+
- "patch"
29+
serilog:
30+
patterns:
31+
- "Serilog*"
32+
update-types:
33+
- "minor"
34+
- "patch"
35+
otel:
36+
patterns:
37+
- "OpenTelemetry*"
38+
update-types:
39+
- "minor"
40+
- "patch"
41+
testcontainers:
42+
patterns:
43+
- "Testcontainers*"
44+
update-types:
45+
- "minor"
46+
- "patch"
47+
commit-message:
48+
prefix: "Package Dependencies"
49+
# Temporarily disable PR limit, till initial dependency update goes through
50+
open-pull-requests-limit: 1000
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Functional Tests
2+
3+
on: [pull_request, workflow_dispatch]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
dotnet-version: ['8.0.x']
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
14+
uses: actions/[email protected]
15+
with:
16+
dotnet-version: ${{ matrix.dotnet-version }}
17+
18+
- name: Install dependencies
19+
run: dotnet restore
20+
- name: Build
21+
run: dotnet build --configuration Release --no-restore
22+
- name: Test
23+
working-directory: ApiConsumerProduct/tests/ApiConsumerProduct.FunctionalTests
24+
run: dotnet test --no-restore --verbosity minimal
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Integration Tests
2+
3+
on: [pull_request, workflow_dispatch]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
dotnet-version: ['8.0.x']
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
14+
uses: actions/[email protected]
15+
with:
16+
dotnet-version: ${{ matrix.dotnet-version }}
17+
18+
- name: Install dependencies
19+
run: dotnet restore
20+
- name: Build
21+
run: dotnet build --configuration Release --no-restore
22+
- name: Test
23+
working-directory: ApiConsumerProduct/tests/ApiConsumerProduct.IntegrationTests
24+
run: dotnet test --no-restore --verbosity minimal
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Unit Tests
2+
3+
on: [pull_request, workflow_dispatch]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
dotnet-version: ['8.0.x']
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
14+
uses: actions/[email protected]
15+
with:
16+
dotnet-version: ${{ matrix.dotnet-version }}
17+
18+
- name: Install dependencies
19+
run: dotnet restore
20+
- name: Build
21+
run: dotnet build --configuration Release --no-restore
22+
- name: Test
23+
working-directory: ApiConsumerProduct/tests/ApiConsumerProduct.UnitTests
24+
run: dotnet test --no-restore --verbosity minimal

0 commit comments

Comments
 (0)