File tree 3 files changed +30
-9
lines changed
3 files changed +30
-9
lines changed 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 : [ "master" ]
9
+ pull_request :
10
+ branches : [ "master" ]
11
+
12
+ jobs :
13
+ build :
14
+
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+ - name : Setup .NET
20
+ uses : actions/setup-dotnet@v4
21
+ with :
22
+ dotnet-version : 8.0.x
23
+ - name : Restore dependencies
24
+ run : dotnet restore
25
+ - name : Build
26
+ run : dotnet build --no-restore
27
+ - name : Test
28
+ run : dotnet test --no-build --verbosity normal
Original file line number Diff line number Diff line change @@ -348,6 +348,5 @@ MigrationBackup/
348
348
349
349
# Ionide (cross platform F# VS Code tools) working folder
350
350
.ionide /
351
- /src /cityjson.core /cityjson.core.v3.ncrunchsolution
352
- /src /cityjson.core /cityjson.core.v3.ncrunchproject
353
- /cityjson.core.tests /cityjson.core.tests.v3.ncrunchproject
351
+ ncrunchsolution
352
+ ncrunchproject
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments