♻️ add interfaces for records (#162) #287
This file contains 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 Workflow | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup dotnet 9.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "9.0.x" | |
- name: Publish AOT test app, assert static analysis warning count, and run the app | |
shell: pwsh | |
run: .\build\test-aot-compatibility.ps1 net9.0 | |
continue-on-error: true # TODO : The SDK is not yet AoT compatible |