-
-
Notifications
You must be signed in to change notification settings - Fork 2
117 lines (99 loc) · 3.74 KB
/
dotnet.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: CI
permissions:
contents: read
pull-requests: write # required if create-pr-comment: true
checks: write # required if create-status-check: true
on:
push:
branches: [ "master", "development" ]
pull_request:
branches: [ "master", "development" ]
release:
types:
- published # Run the workflow when a new GitHub release is published
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
NuGetDirectory: ${{github.workspace}}/nupkgs
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Compose
run: |
docker-compose -f docker-compose.yml -f docker-compose.override.yml config
docker-compose pull
docker-compose build
- name: Run tests
run: docker-compose up --exit-code-from tests tests localstack
- name: Run tests
run: docker-compose up --exit-code-from unittests unittests
- name: Upload TRX test results
uses: actions/upload-artifact@v2
if: always() # This ensures it runs even if the previous steps fail
with:
name: trx-test-results
path: ./test-results/*.trx
- name: Clean up
run: docker-compose down
- name: Parse Trx files
uses: NasAmin/trx-parser@v0.5.0
id: trx-parser
with:
TRX_PATH: ${{ github.workspace }}/test-results #This should be the path to your TRX files
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Process trx reports
id: process-trx
# You may also reference just the major or major.minor version
uses: im-open/process-dotnet-test-results@v3.0.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
base-directory: './test-results'
create-status-check: true
create-pr-comment: true
update-comment-if-one-exists: true
ignore-test-failures: true
timezone: 'america/denver'
comment-identifier: 'bff-tests'
# Optional
- name: Annotate Test Outcome
if: steps.process-trx.outputs.test-results-truncated == 'true'
run: cat ${{ steps.process-trx.outputs.test-results-file-path }} > $GITHUB_STEP_SUMMARY
# Optional
- name: Upload Outcome as artifact if character limit reached
if: steps.process-trx.outputs.test-results-truncated == 'true'
uses: actions/upload-artifact@v4
with:
name: Cypress-Results
path: |
${{ steps.process-trx.outputs.test-results-file-path }}
retention-days: 90
build-and-publish:
needs: integration-tests
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' && success()
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build and Pack
run: |
dotnet build src/DynamoDBv2.Transactions.csproj --configuration Release
dotnet pack src/DynamoDBv2.Transactions.csproj --configuration Release --output ${{ env.NuGetDirectory }} /p:Version=3.7.$GITHUB_RUN_NUMBER
- name: Create NuGet Artifact
uses: actions/upload-artifact@v3
with:
name: nuget
if-no-files-found: error
retention-days: 7
path: ${{ env.NuGetDirectory }}/*.nupkg
- name: Publish NuGet package
run: |
foreach($file in (Get-ChildItem ${{ env.NuGetDirectory }} -Recurse -Include *.nupkg)) {
dotnet nuget push $file --api-key "${{ secrets.NUGET_PUSH_KEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate
}