Skip to content

Merge branch 'main' of https://github.com/Geodan/i3dm.export #5

Merge branch 'main' of https://github.com/Geodan/i3dm.export

Merge branch 'main' of https://github.com/Geodan/i3dm.export #5

Workflow file for this run

name: .NET
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
- name: Build
working-directory: src
run: dotnet build --configuration Release
- name: Test
working-directory: src
run: dotnet test --configuration Release