Skip to content

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

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

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

name: WebDriver C# Project Tests
on:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.x' # Specify the desired .NET version
- name: Build and test
run:|
cd dotnet/AutomationTools-Series/GithubActions/
dotnet 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'