Skip to content

feat: policy-as-code (depradar.json) + accepted-risk suppression #31

feat: policy-as-code (depradar.json) + accepted-risk suppression

feat: policy-as-code (depradar.json) + accepted-risk suppression #31

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET 10
uses: actions/setup-dotnet@v5
with:
dotnet-version: "10.0.x"
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Verify formatting
run: dotnet format --verify-no-changes --no-restore
# Unit + architecture tests need no Docker; the integration test uses
# Testcontainers against the Docker engine preinstalled on the runner.
- name: Test
run: dotnet test --no-build -c Release