Fix regression for linking modules in GUI (#180) #308
This file contains hidden or 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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup .NetCore | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: 10.0.100 | |
| - name: Build with dotnet | |
| run: | | |
| dotnet build -c Release | |
| - name: Unit Tests | |
| run: | | |
| dotnet test -c Release |