-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·50 lines (45 loc) · 1.23 KB
/
nox_ci.yaml
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
50
name: Build & Test
on:
workflow_dispatch:
pull_request:
branches: [ main ]
paths:
- src/**
- tests/**
- .github/workflows/nox_ci.yaml
push:
branches: [ main ]
paths:
- src/**
- tests/**
- .github/workflows/nox_ci.yaml
permissions:
id-token: write
contents: read
checks: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.x']
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Restore
run: dotnet restore ./src/Nox.Cli.sln
- name: Build
run: dotnet build ./src/Nox.Cli.sln --warnaserror --configuration Release --no-restore
- name: Test
run: dotnet test ./src/Nox.Cli.sln --configuration Release --no-restore --verbosity minimal --logger "trx;LogFileName=test-results.trx"
- name: Publish Test Report
uses: dorny/test-reporter@v1
if: ${{ always() }}
with:
name: Tests Results
path: "**/test-results.trx"
reporter: dotnet-trx
fail-on-error: true