blob: 0de9d5a98c0c2c47b2852d5495bb626b4759e6e4 (
plain)
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
|
name: Back End CI
on:
push:
branches: [main]
paths:
- "BackEnd/**"
pull_request:
branches: [main]
paths:
- "BackEnd/**"
jobs:
build:
name: Build
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: BackEnd
env:
ASPNETCORE_ENVIRONMENT: "Development"
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
- uses: actions/checkout@v3
- name: Restore Cache
uses: actions/cache@v3
with:
path: ${{ env.NUGET_PACKAGES }}
key: nuget-${{ runner.os }}-${{ hashFiles('BackEnd/**/packages.lock.json') }}
restore-keys: |
nuget-${{ runner.os }}-
- name: Use .Net Core 7.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
- name: Build And Test
run: dotnet test --logger html --collect:"XPlat Code Coverage" --settings './Timeline.Tests/coverletArgs.runsettings'
- name: Upload Test Artifact
uses: actions/upload-artifact@v3
if: ${{ success() || failure() }}
with:
name: test-result
path: BackEnd/Timeline.Tests/TestResults/
|