File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # This workflow will build a .NET project
2+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+ name : .NET
5+
6+ on :
7+ push :
8+ branches : [ "main" ]
9+ pull_request :
10+ branches : [ "main" ]
11+
12+ jobs :
13+ build :
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v6
18+ - name : Setup .NET
19+ uses : actions/setup-dotnet@v5
20+ with :
21+ dotnet-version : 10.0.x
22+ - name : Restore dependencies
23+ run : dotnet restore
24+ - name : Build
25+ run : dotnet build --no-restore
26+ - name : Test
27+ run : dotnet test --no-build --verbosity normal
Original file line number Diff line number Diff line change 11# CodoMetis.ValueRanges
22
33[ ![ NuGet] ( https://img.shields.io/nuget/v/CodoMetis.ValueRanges )] ( https://www.nuget.org/packages/CodoMetis.ValueRanges )
4+ [ ![ Context7] ( https://img.shields.io/badge/Context7-Indexed-3B82F6 )] ( https://context7.com/caffeinatedcoder/codometis.valueranges )
5+ [ ![ dev.to] ( https://img.shields.io/badge/dev.to-Article-3B82F6 )] ( https://dev.to/caffeinatedcoder/the-interval-is-the-thing-modelling-range-types-as-first-class-domain-objects-in-net-3jha )
6+ [ ![ hashnode] ( https://img.shields.io/badge/hashnode.dev-Article-3B82F6 )] ( https://codometis.hashnode.dev/stop-modeling-time-with-two-columns-codometis-valueranges-brings-interval-logic-to-your-net-domain?utm_source=hashnode&utm_medium=feed )
47[ ![ License: MIT] ( https://img.shields.io/badge/License-MIT-blue.svg )] ( LICENSE )
58[ ![ .NET 10] ( https://img.shields.io/badge/.NET-10-512BD4 )] ( https://dotnet.microsoft.com )
69
You can’t perform that action at this time.
0 commit comments