This commit is contained in:
2025-08-29 23:57:35 +02:00
commit 701379b505
2 changed files with 824 additions and 0 deletions

33
example.lsp Normal file
View File

@@ -0,0 +1,33 @@
(:macro seq ())
(:macro seq (hd)
(:t "- " hd))
(:macro seq (hd .. tl)
(:seq hd) (:seq tl))
(:macro @ ('k)
(:t 'k ":"))
(:macro @ (k v)
(:t k ": " v))
(:macro @ (k v .. other)
(k v)
other)
(name "Complex CI/CD Pipeline")
(on
(push
(branches
(:seq "main" "release/*")))
(pull_requests
(types
(:seq opened synchronize reopened)))
(workflow_dispatch))
(env
(NODE_VERSION 20)
(PYTHON_VERSION "3.11"))