-
Notifications
You must be signed in to change notification settings - Fork 2
73 lines (58 loc) · 1.79 KB
/
pull_request.yaml
File metadata and controls
73 lines (58 loc) · 1.79 KB
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
name: pull_request
on: [pull_request]
jobs:
helm-lint:
name: Run Helm lint Check
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Helm Lint Checks
uses: MapColonies/shared-workflows/actions/helm-lint@helm-lint-v1
tests:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ["6.0.x"]
steps:
- name: Check out Git repository
uses: actions/checkout@v6
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal --logger "trx;LogFileName=test-results.trx" --results-directory ./TestResults
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: Test Results ${{ matrix.dotnet-version }}
path: ./TestResults/**
build_docker_image:
name: Build Docker Images
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v6
- name: Build Service Docker image
uses: docker/build-push-action@v6
with:
context: .
file: MergerService/Dockerfile
push: false
tags: test-build-service:latest
- name: Build CLI Docker image
uses: docker/build-push-action@v6
with:
context: .
file: MergerCli/Dockerfile
push: false
tags: test-build-cli:latest