Skip to content

Run Program

Run Program #179

# 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: Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
pull-requests: write
contents: read
actions: read
checks: write
jobs:
Build:
runs-on: ubuntu-latest
environment: Build & Test
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
working-directory: 'CLVMDotNet'
- name: Build
run: dotnet build --no-restore
working-directory: 'CLVMDotNet'
- name: Test
working-directory: 'CLVMDotNet'
run: |
dotnet test --logger "trx;LogFileName=TestResults.trx"
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Test Results
path: 'TestResults.trx'
reporter: dotnet-trx
working-directory: 'CLVMDotNet/tests/TestResults'