Skip to content

Instantly share code, notes, and snippets.

View michaelfoley1's full-sized avatar

Michael Foley michaelfoley1

View GitHub Profile
@michaelfoley1
michaelfoley1 / build_service.py
Last active May 17, 2024 00:53
build_service.py
import dataclasses
from typing import List
@dataclasses.dataclass
class Step:
"""A step in a build.
Attributes:
name: the name of the step.
import dataclasses
from typing import List
@dataclasses.dataclass
class Step:
"""A step in a build.
Attributes:
name: the name of the step.
dependencies: the step names this step depends on.