Move from net461 to net462 #8
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: Linux | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Build source code | |
| run: | | |
| dotnet --info | |
| dotnet restore -p:Configuration=Release -p:Platform="Any CPU" -v normal ./src/ | |
| dotnet build -p:Configuration=Release -p:Platform="Any CPU" -v normal ./src/ | |
| - name: Test netstandard2.0 assembly in net80 application | |
| run: | | |
| dotnet test -f net8.0 ./src/Pkcs11Interop.X509Store.Tests/bin/Release/net80/Pkcs11Interop.X509Store.Tests.dll |