Fix misplacement of geometry parts (#30) #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Core | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
steps: | |
- name: Get source | |
uses: actions/checkout@v4 | |
- name: Setup .NET Core 6. | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore packages. | |
run: dotnet restore | |
- name: Build all projects | |
run: dotnet build -c Release -v minimal -p:WarningLevel=3 --no-restore | |
- name: Test | |
run: dotnet test -c Release --no-build | |
working-directory: ./test/NetTopologySuite.IO.VectorTiles.Tests/ | |
- name: Functional tests. | |
run: dotnet run -c release | |
working-directory: ./test/NetTopologySuite.IO.VectorTiles.Tests.Functional/ | |
- name: Pack | |
run: dotnet pack -c Release --no-build -o artifacts -p:NoWarn=NU5105 | |
- name: Upload | |
uses: actions/upload-artifact@v1 | |
with: | |
name: NuGet Package Files (${{ matrix.os }}) | |
path: artifacts |