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 7cc00fb commit 031470fCopy full SHA for 031470f
1 file changed
.github/workflows/main.yml
@@ -9,10 +9,26 @@ on:
9
workflow_dispatch:
10
11
jobs:
12
- build:
13
+ linuxBuild:
14
runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Setup .NET Core
18
+ uses: actions/setup-dotnet@v4
19
+ with:
20
+ dotnet-version: |
21
+ 3.1.x
22
+ 5.0.x
23
+ - name: Install dependencies
24
+ run: dotnet restore src/GeoJSON.Net.sln
25
+ - name: Build
26
+ run: dotnet build src/GeoJSON.Net.sln --configuration Release --no-restore
27
+ - name: Test
28
+ run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal
29
30
+ winBuild:
31
+ runs-on: windows-latest
32
steps:
33
- uses: actions/checkout@v2
34
- name: Setup .NET Core
0 commit comments