-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 843 Bytes
/
Copy pathdotnet.yml
File metadata and controls
35 lines (28 loc) · 843 Bytes
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
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Build the entire solution
uses: ./.github/workflows/workflow-build.yml
tests:
name: Run Unit Tests
needs: build
uses: ./.github/workflows/workflow-tests.yml
e2e-tests:
name: Run End To End Tests
needs: build
uses: ./.github/workflows/workflow-e2e-tests.yml
tests-windows:
name: Run Unit Tests (Windows)
needs: build
uses: ./.github/workflows/workflow-tests-windows.yml
e2e-tests-windows:
name: Run End To End Tests (Windows)
needs: build
uses: ./.github/workflows/workflow-e2e-tests-windows.yml