File tree Expand file tree Collapse file tree 3 files changed +54
-1
lines changed
Expand file tree Collapse file tree 3 files changed +54
-1
lines changed Original file line number Diff line number Diff line change 1+
2+ name : API Documentation Check
3+
4+ on :
5+ push :
6+ branches : [ main ]
7+ pull_request :
8+ branches : [ main ]
9+
10+ jobs :
11+ check-docs :
12+
13+ runs-on : windows-latest
14+
15+ steps :
16+ - uses : actions/checkout@v3
17+ - name : Setup .NET
18+ uses : actions/setup-dotnet@v3
19+ with :
20+ dotnet-version : 6.0.x
21+ - name : Check API Documentation
22+ run : dotnet build SimpleDataGrid/SimpleDataGrid.csproj /p:WarningsAsErrors="CS1591;CS1573;CS1572;CS1570"
Original file line number Diff line number Diff line change 1+
2+ name : Run Tests
3+
4+ on :
5+ push :
6+ branches : [ main ]
7+ pull_request :
8+ branches : [ main ]
9+
10+ jobs :
11+ build :
12+
13+ runs-on : windows-latest
14+
15+ steps :
16+ - uses : actions/checkout@v3
17+ - name : Setup .NET
18+ uses : actions/setup-dotnet@v3
19+ with :
20+ dotnet-version : 6.0.x
21+ - name : Restore dependencies
22+ run : dotnet restore
23+ - name : Build
24+ run : dotnet build --no-restore
25+ - name : Test
26+ run : dotnet test --no-build --verbosity normal
Original file line number Diff line number Diff line change 1- # <img src =" https://github.com/DerekGooding/SimpleDataGrid/blob/main/Icon.png " width =50 height =50/ > SimpleDataGrid
1+ # SimpleDataGrid
2+
3+ [ ![ Build Status] ( https://github.com/dgooding/SimpleDataGrid/actions/workflows/tests.yml/badge.svg )] ( https://github.com/dgooding/SimpleDataGrid/actions/workflows/tests.yml )
4+ [ ![ Open Issues] ( https://img.shields.io/github/issues/dgooding/SimpleDataGrid )] ( https://github.com/dgooding/SimpleDataGrid/issues )
5+ [ ![ NuGet Version] ( https://img.shields.io/nuget/v/SimpleDataGrid )] ( https://www.nuget.org/packages/SimpleDataGrid/ )
6+ [ ![ API Docs] ( https://github.com/dgooding/SimpleDataGrid/actions/workflows/api-docs.yml/badge.svg )] ( https://github.com/dgooding/SimpleDataGrid/actions/workflows/api-docs.yml )
27
38A simple DataGrid for WPF that supports pagination, filtering, and searching.
49
You can’t perform that action at this time.
0 commit comments