Skip to content

Update target frameworks and package dependencies #21

Update target frameworks and package dependencies

Update target frameworks and package dependencies #21

Workflow file for this run

name: Build and Tests
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
linuxBuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.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@v4
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.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: 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