-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (36 loc) · 1.05 KB
/
Copy pathcontinuous.yml
File metadata and controls
40 lines (36 loc) · 1.05 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
name: continuous
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Run './build.cmd Test Pack'
run: ./build.cmd Test
- name: Codecov
# You may pin to the exact commit or the version.
# uses: codecov/codecov-action@fcebab03f26c7530a22baa63f06b3e0515f0c7cd
uses: codecov/codecov-action@v1.3.1
with:
# Repository upload token - get it from codecov.io. Required only for private repositories
token: ${{ secrets.CODECOV }}
files: ./output/tests/Datatent2.Core.Tests.xml
# Directory to search for coverage reports.
directory: /datatent2/output/tests
verbose: false
# Specify the branch name
override_branch: develop