acts-next 0.14.4

a fast, tiny, extensiable workflow engine
Documentation
name: event_test
id: m1
inputs:
  value: 0
outputs:
  value:
setup:
  - act: on_created
    then:
      - act: msg
        key: fn1
  - act: on_step
    then:
      - act: msg
        key: fn_on_step
  - act: on_completed
    then:
      - act: msg
        key: fn1
steps:
  - name: step 1
    id: step1
  - name: step 2
    id: step2
    setup:
      - act: set
        inputs:
          value: 100
      - act: on_completed
        then:
          - act: msg
            key: fn2
  - name: step 3
    id: step3
    setup:
      - act: on_completed
        then:
          - act: msg
            key: fn3
            inputs:
              a: ${ $("value") }
  - name: step 4