Add ML-DSA (FIPS 204) post-quantum signature support #3234
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: "Run unit tests" | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| workflow_dispatch: # Allows manual triggering of workflow | |
| push: | |
| branches: | |
| - dev | |
| - dev8x | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| branches: | |
| - dev | |
| - dev8x | |
| env: | |
| TargetNetNext: False | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| continue-on-error: false | |
| name: "Build and run unit tests" | |
| steps: | |
| - name: Set git core.longpaths flag | |
| run: | | |
| git config --system core.longpaths true | |
| - name: Checkout repository | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd | |
| - name: Setup .NET 6.x | |
| uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 | |
| with: | |
| dotnet-version: '6.x' | |
| - name: Setup .NET SDK from global.json | |
| uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 | |
| with: | |
| global-json-file: ./global.json | |
| - name: Strong name bypass | |
| run: | | |
| regedit /s .\build\strongNameBypass.reg | |
| - name: Run the tests | |
| run: dotnet test Wilson.sln --settings:./build/CodeCoverage.runsettings | |
| # Run baseline package validation | |
| - name: Pack | |
| run: dotnet pack Product.proj --no-restore --no-build |