Updated year in copyrights #8
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: 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.Tests/bin/Release/net80/Pkcs11Interop.Tests.dll |