--- kind: pipeline name: coopcloud.tech/tagcmp steps: - name: make check image: golang:1.17 commands: - make check - name: make build image: golang:1.17 commands: - make build - name: make test image: golang:1.17 commands: - make test - name: notify on failure image: plugins/matrix settings: homeserver: https://matrix.autonomic.zone roomid: "IFazIpLtxiScqbHqoa:autonomic.zone" userid: "@autono-bot:autonomic.zone" accesstoken: from_secret: autono_bot_access_token depends_on: - make check - make build - make test when: status: - failure