Skip to content

Bug Fix: Missing log-directory #912

Bug Fix: Missing log-directory

Bug Fix: Missing log-directory #912

Workflow file for this run

name: dotnet format
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check-format:
runs-on: windows-latest
steps:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Install dotnet-format tool
run: dotnet tool install -g dotnet-format
- name: Check out code
uses: actions/checkout@v2
- name: Run dotnet format
run: dotnet format '.\src\Microsoft.PowerApps.TestEngine' --verify-no-changes --severity warn