Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0 #147
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: AOT Compatibility | |
| on: | |
| push: | |
| branches: [ 'master' ] | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| branches: [ 'master' ] | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| aot-test: | |
| strategy: | |
| fail-fast: false # ensures the entire test matrix is run, even if one permutation fails | |
| matrix: | |
| os: [ windows-latest ] | |
| mailkitlite: [ true ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # fetching all | |
| submodules: true | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v4 | |
| - name: publish AOT testApp, assert static analysis warning count, and run the app | |
| shell: pwsh | |
| run: .\scripts\test-aot-compatibility.ps1 ${{ matrix.mailkitlite }} |