Skip to content

Commit 2608012

Browse files
authored
Initial commit
0 parents  commit 2608012

27 files changed

+1165
-0
lines changed

.config/dotnet-tools.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"fsdocs-tool": {
6+
"version": "20.0.1",
7+
"commands": [
8+
"fsdocs"
9+
]
10+
}
11+
}
12+
}

.github/workflows/build-and-test.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build and test
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
10+
jobs:
11+
build-and-test-linux:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Setup .NET
18+
uses: actions/setup-dotnet@v4
19+
with:
20+
dotnet-version: 8.x.x
21+
- name: make script executable
22+
run: chmod u+x build.sh
23+
- name: Build and test
24+
working-directory: ./
25+
run: ./build.sh runTests
26+
27+
build-and-test-windows:
28+
29+
runs-on: windows-latest
30+
31+
steps:
32+
- uses: actions/checkout@v4
33+
- name: Setup .NET
34+
uses: actions/setup-dotnet@v4
35+
with:
36+
dotnet-version: 8.x.x
37+
- name: Build and test
38+
working-directory: ./
39+
run: ./build.cmd runTests

0 commit comments

Comments
 (0)