Skip to content

Commit 88bc8d0

Browse files
committed
Kickoff
1 parent 14331af commit 88bc8d0

22 files changed

+1450
-0
lines changed

.editorconfig

+462
Large diffs are not rendered by default.

.github/workflows/tests.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: 'Tests'
2+
3+
on:
4+
workflow_dispatch: # To can dispatch manually
5+
6+
pull_request:
7+
types: [opened, reopened, edited, synchronize]
8+
branches:
9+
- main
10+
11+
push:
12+
branches:
13+
- main
14+
15+
16+
jobs:
17+
18+
test-project:
19+
name: "Test nuget"
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- name: "Checkout"
24+
uses: actions/checkout@v4
25+
26+
- name: "Setup .NET"
27+
uses: actions/setup-dotnet@v4
28+
with:
29+
dotnet-version: |
30+
9.x
31+
32+
- name: "Restore dependencies"
33+
run: dotnet restore
34+
35+
- name: "Build"
36+
run: dotnet build --configuration Release --no-restore
37+
38+
- name: "Run tests"
39+
run: dotnet test --configuration Release --no-build --verbosity normal

0 commit comments

Comments
 (0)