forked from skimedic/SoftwareTesting
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (28 loc) · 1008 Bytes
/
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
# 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: channel9-pj
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore ./src/SoftwareTesting.sln
- name: Build
run: dotnet build ./src/SoftwareTesting.sln --no-restore
- name: Test
run: dotnet test ./src/XUnitExamples/XUnitExamples.csproj --no-build --verbosity normal --logger "trx;LogFileName=xtests.trx"
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
trx_files: "/home/runner/work/SoftwareTestingFromPhil/SoftwareTestingFromPhil/src/XUnitExamples/TestResults/xtests.trx"