Add ML-DSA (FIPS 204) post-quantum signature support #2507
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 Check" | |
| on: | |
| workflow_dispatch: # Allows manual triggering of workflow | |
| push: | |
| branches: [ "dev", "dev8x" ] | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| branches: [ "dev", "dev8x" ] | |
| jobs: | |
| analyze: | |
| runs-on: windows-latest | |
| name: "AOT check" | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Setup .NET SDK from global.json | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| global-json-file: ./global.json | |
| - name: Runs powershell script | |
| id: aot-powershell | |
| run: build\test-aot.ps1 'net10.0' | |