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.
1 parent 24d4947 commit fe355efCopy full SHA for fe355ef
1 file changed
.github/workflows/main.yml
@@ -27,6 +27,23 @@ 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: '8.0.x'
40
+ - name: Install dependencies
41
+ run: dotnet restore src/GeoJSON.Net.sln
42
+ - name: Build
43
+ run: dotnet build src/GeoJSON.Net.sln -c Release --no-restore -p:Version=$(git describe --tags)
44
+ - name: Test
45
+ run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal
46
+
47
winBuild:
48
runs-on: windows-latest
49
steps:
0 commit comments