Skip to content

Merge branch 'main' into 5-implement-vanilla-pack #96

Merge branch 'main' into 5-implement-vanilla-pack

Merge branch 'main' into 5-implement-vanilla-pack #96

Workflow file for this run

on:
push:
jobs:
CI:
name: Build project
runs-on: [self-hosted, Windows, x64, TwinCAT]
permissions:
checks: write
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Build
shell: pwsh
run: |
.\build.ps1 -Configuration Release
- name: Run tests
shell: pwsh
run: |
dotnet test --configuration Release --no-build --logger "trx;verbosity=detailed;LogFileName=test_results.trx" .\TwinGet.sln
- name: Test results reporting
if: success() || failure()
uses: dorny/test-reporter@v1
with:
name: xUnit tests
path: ./test/*/TestResults/*.trx
reporter: dotnet-trx