build(deps): bump test-summary/action from 2.3 to 2.4 #26
Workflow file for this run
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: '[C#] SecureMemory CI' | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'csharp/SecureMemory/**' | |
- '.github/workflows/csharp-securememory-*' | |
branches-ignore: | |
- 'release-*' | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-csharp-sm-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
outputs: | |
artifact: ${{ steps.upload-artifact.outputs.artifact_id }} | |
container: | |
image: mcr.microsoft.com/dotnet/sdk:6.0 | |
options: --ulimit core=-1 --ulimit memlock=-1:-1 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Add workspace to safe.directory | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Cache dotnet packages | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('csharp/**/*.csproj') }}-v2 | |
- name: Build | |
run: | | |
cd csharp/SecureMemory | |
./scripts/clean.sh | |
./scripts/build.sh | |
- name: Upload artifact | |
id: upload-artifact | |
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4 | |
with: | |
name: csharp-secure-memory | |
path: | | |
csharp/SecureMemory/SecureMemory/bin/** | |
csharp/SecureMemory/SecureMemory/obj/** | |
csharp/SecureMemory/PlatformNative/bin/** | |
csharp/SecureMemory/PlatformNative/obj/** | |
csharp/SecureMemory/SecureMemory.Tests/bin/** | |
csharp/SecureMemory/SecureMemory.Tests/obj/** | |
test: | |
name: Run Unit Tests | |
runs-on: ubuntu-latest | |
needs: build | |
container: | |
image: mcr.microsoft.com/dotnet/sdk:6.0 | |
options: --ulimit core=-1 --ulimit memlock=-1:-1 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Cache dotnet packages | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('csharp/**/*.csproj') }}-v2 | |
- name: Download artifact | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: csharp-secure-memory | |
path: ${{ github.workspace }}/csharp/SecureMemory | |
- name: Run unit tests | |
run: | | |
cd csharp/SecureMemory | |
./scripts/test.sh | |
- name: Unit test summary | |
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86 # v2.3.0 | |
with: | |
paths: 'csharp/SecureMemory/SecureMemory.Tests/test-result.xml' | |
if: always() |