Enhance Native AOT validation and mapping tests in CI workflow (linux) #30
Workflow file for this run
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-windows | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-test: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Restore | |
| run: dotnet restore Mammoth.LiteMapper.sln | |
| - name: Build | |
| run: dotnet build Mammoth.LiteMapper.sln --no-restore | |
| - name: Test | |
| run: dotnet test Mammoth.LiteMapper.sln --no-build | |
| - name: Validate solution paths | |
| shell: pwsh | |
| run: | | |
| dotnet sln Mammoth.LiteMapper.sln list | |
| dotnet sln Mammoth.LiteMapper.slnx list |