Add commercial evidence filesystem integrity seal execution #251
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: dotnet | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-test-pack: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore | |
| run: dotnet restore src/Sigtran.NET.sln | |
| - name: Build | |
| run: dotnet build src/Sigtran.NET.sln --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet run --project src/Sigtran.NET.Tests/Sigtran.NET.Tests.csproj --configuration Release --no-build | |
| - name: Pack | |
| run: dotnet pack src/Sigtran.NET/Sigtran.NET.csproj --configuration Release --no-build |