-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 923 Bytes
/
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
name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 🔨 set up .net 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: ⚗ restore dependencies
run: dotnet restore src
- name: 🛠 build
run: dotnet build src --configuration Release --no-restore
- name: 🧪 run tests
run: |
cd ./tests/LazyCart.Tests/
dotnet test --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
cp TestResults/*/coverage.opencover.xml .
- name: 💌 publish code coverage
uses: codecov/codecov-action@v3
with:
files: /home/runner/work/lazy-cart/lazy-cart/tests/LazyCart.Tests/coverage.opencover.xml
fail_ci_if_error: true