Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions 29 .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,32 @@ on:
workflow_dispatch:

jobs:
build:

linuxBuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
5.0.x
- name: Install dependencies
run: dotnet restore src/GeoJSON.Net.sln
- name: Build
run: dotnet build src/GeoJSON.Net.sln -c Release --no-restore -p:Version=$(git describe --tags)
- name: Test
run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal

winBuild:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
Expand All @@ -24,6 +44,11 @@ jobs:
- name: Install dependencies
run: dotnet restore src/GeoJSON.Net.sln
- name: Build
run: dotnet build src/GeoJSON.Net.sln --configuration Release --no-restore
run: dotnet build src/GeoJSON.Net.sln -c Release --no-restore -p:Version=$(git describe --tags)
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: nupkg
path: ./src/GeoJSON.Net/bin/Release/*.nupkg
- name: Test
run: dotnet test src/GeoJSON.Net.sln --no-restore --verbosity normal
Morty Proxy This is a proxified and sanitized view of the page, visit original site.