Skip to content

Merge branch 'master' of https://github.com/AutomateThePlanet/Automat… #6

Merge branch 'master' of https://github.com/AutomateThePlanet/Automat…

Merge branch 'master' of https://github.com/AutomateThePlanet/Automat… #6

Workflow file for this run

name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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: Change Folder
run: cd dotnet/AutomationTools-Series/GithubActions/
- name: Test
run: dotnet test GithubActions.csproj --configuration Release --logger "trx;LogFileName=testresults.trx" --results-directory ./TestResults
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
with:
testResultsPath: '**/TestResults/*.trx'