Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI Build and Test

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.x

- name: Restore dependencies
run: dotnet restore Infragistics.QueryBuilder.Executor.sln

- name: Build solution
run: dotnet build Infragistics.QueryBuilder.Executor.sln --configuration Release --no-restore

- name: Pack solution - NuGet
run: dotnet pack Infragistics.QueryBuilder.Executor.sln --configuration Release --no-build

- name: Run tests
run: dotnet test Infragistics.QueryBuilder.Executor.sln --configuration Release --no-build --verbosity normal
Loading