Step 0 — Setup

Before adding any content, declare the dependable_element target itself. All other steps in this tutorial fill in the fields left empty here.

BUILD

load(
    "@score_tooling//bazel/rules/rules_score:rules_score.bzl",
    "dependable_element",
)

dependable_element(
    name = "my_element",
    integrity_level = "B",
    requirements = [],
    assumptions_of_use = [],
    architectural_design = [],
    components = [],
    dependability_analysis = [],
    tests = [],
    maturity = "development",
)

→ Next: Step 1 — Requirements