We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24d4947 + 58e29f1 commit 774cc85Copy full SHA for 774cc85
.github/workflows/main.yml
@@ -27,6 +27,25 @@ jobs:
27
- name: Test
28
run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal
29
30
+ macBuild:
31
+ runs-on: macos-latest
32
+ steps:
33
+ - uses: actions/checkout@v4
34
+ with:
35
+ fetch-depth: 0
36
+ - name: Setup .NET Core
37
+ uses: actions/setup-dotnet@v4
38
39
+ dotnet-version: |
40
+ 6.0.x
41
+ 8.0.x
42
+ - name: Install dependencies
43
+ run: dotnet restore src/GeoJSON.Net.sln
44
+ - name: Build
45
+ run: dotnet build src/GeoJSON.Net.sln -c Release --no-restore -p:Version=$(git describe --tags)
46
+ - name: Test
47
+ run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal
48
+
49
winBuild:
50
runs-on: windows-latest
51
steps:
0 commit comments