Updated CHANGES.md #203
Workflow file for this run
This file contains 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
name: PR Validation | |
on: | |
pull_request: | |
branches: [ dev, main ] | |
# Run every biweekly to discover failures due to environment changes | |
schedule: | |
- cron: '0 0 1,15 * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build-and-test: | |
runs-on: windows-latest # SQL Server LocalDB used in tests requires Windows | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run build and tests | |
run: ./Build.ps1 | |
shell: pwsh | |
- name: Upload binaries artifact for InferSharp job | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bin-net6 | |
path: src\Serilog.Sinks.MSSqlServer\bin\Release\net6.0 | |
- name: Upload testresults artifact with code coverage file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: testresults | |
path: test\Serilog.Sinks.MSSqlServer.Tests\TestResults | |
infersharp: | |
runs-on: ubuntu-latest # Container action used by Infer# requires Linux | |
needs: build-and-test | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Download binaries artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: bin-net6 | |
path: bin-net6 | |
- name: Run Infer# | |
uses: microsoft/[email protected] | |
with: | |
binary-path: bin-net6 | |
- name: Upload SARIF output to GitHub Security Center | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: infer-out/report.sarif |