Skip to content

Instantly share code, notes, and snippets.

View bandesz's full-sized avatar

Andras F. bandesz

  • London
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bandesz on github.
  • I am bandesz (https://keybase.io/bandesz) on keybase.
  • I have a public key ASC6ERtcsqEweCsoskeM7wmGqcBN148l6a_Rc26Z9Xw64wo

To claim this, I am signing this object:

@bandesz
bandesz / .drone.star
Created December 14, 2021 17:45
Drone CI - Faking steps, services and pipelines
def fake_step(step):
return {
"name": step["name"],
"image": "busybox:1.34",
"commands": [
"echo 'Faking %s'" % step["name"],
],
"depends_on": step.get("depends_on", []),
"when": step.get("when", {}),
}