This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# output markdown summary of sql code analysis errors and warnings | |
# parsed out of StaticCodeAnalysis xml output | |
param( | |
[Parameter(Mandatory = $true)] | |
[string]$inputFile | |
) | |
$markdownOutput = "# SQL Code Analysis Output`n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this workflow will create the DB in a container | |
# and perform code analysis checks on the T-SQL code | |
# before getting a script for the anticipated deployment | |
name: SQL dev feedback | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: |
OlderNewer