You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
559 B
25 lines
559 B
name: Run Development Tests |
|
|
|
on: |
|
workflow_dispatch: |
|
inputs: |
|
logLevel: |
|
description: 'Log level' |
|
required: true |
|
default: 'warning' |
|
tags: |
|
description: 'Test scenario tags' |
|
|
|
jobs: |
|
build: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
- uses: actions/checkout@v3 |
|
- name: Setup .NET |
|
uses: actions/setup-dotnet@v2 |
|
with: |
|
dotnet-version: 5.0.x |
|
- name: Change Directory |
|
run: cd TestAutomation | dotnet restore |dotnet build --no-restore | dotnet test --no-build --verbosity normal |