Skip to content

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

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

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

Workflow file for this run

name: .NET
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
working-directory: src
run: dotnet build --configuration Release
- name: Test
working-directory: tests
run: dotnet test --configuration Release