Skip to content

Update README.md

Update README.md #6

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
dotnet-quality: 'preview'
- name: Install SQL Local DB
run: ./setup-sqllocaldb.ps1
shell: pwsh
- name: Build
run: dotnet build QuerySpecification.sln --configuration Release
- name: Test
run: dotnet test QuerySpecification.sln --configuration Release --no-build --no-restore