Skip to content

Added conformance tests step to CI workflow #7

Added conformance tests step to CI workflow

Added conformance tests step to CI workflow #7

Workflow file for this run

name: PR Validation
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
validate:
name: Validate PR
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Debug --no-restore
- name: Check for compilation warnings
run: dotnet build --configuration Release --no-restore --warnaserror
- name: Run tests
run: dotnet test --configuration Release --no-build --verbosity normal
- name: Check formatting
run: dotnet format style --no-restore --verify-no-changes