Commit 47a8639 1 parent 3d7c63d commit 47a8639 Copy full SHA for 47a8639
File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on :
4
+ push :
5
+ branches : [master]
6
+ pull_request :
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ strategy :
12
+ matrix :
13
+ dotnet-version : ['8.0.x']
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+
17
+ - name : Setup .NET Core SDK ${{ matrix.dotnet-version }}
18
+ uses : actions/setup-dotnet@v3
19
+ with :
20
+ dotnet-version : ${{ matrix.dotnet-version }}
21
+
22
+ - name : Install dependencies
23
+ run : dotnet restore src/Danom
24
+
25
+ - name : Build
26
+ run : dotnet build src/Danom -c Release
27
+
28
+ - name : Test
29
+ run : dotnet test test/Danom.Tests -c Release
Original file line number Diff line number Diff line change 1
1
# Danom
2
2
3
+ [ ![ build] ( https://github.com/pimbrouwers/Danom/actions/workflows/build.yml/badge.svg )] ( https://github.com/pimbrouwers/Danom/actions/workflows/build.yml )
4
+
3
5
Danom is a C# library that provides monadic structures to simplify functional programming patterns in C#.
4
6
5
7
## Key Features
You can’t perform that action at this time.
0 commit comments