grim/convey

Parents 6b1dbda836d9
Children 98b64b5d64c3
Add a codespell task to the testing stage and make that stage concurrent
  • +9 -0
    convey.yml
  • --- a/convey.yml Mon Dec 20 12:33:09 2021 -0600
    +++ b/convey.yml Mon Dec 20 12:41:01 2021 -0600
    @@ -18,6 +18,13 @@
    type: convey/clean
    files:
    - convey-*
    + codespell:
    + type: podman/run
    + image: docker.io/alpine:edge
    + script:
    + - apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ py3-codespell
    + - cd ${CONVEY_WORKSPACE}
    + - codespell .
    go-test:
    type: podman/run
    image: ${GO_IMAGE}
    @@ -73,7 +80,9 @@
    tasks:
    - import
    - name: testing
    + concurrent: true
    tasks:
    + - codespell
    - go-test
    - name: build
    concurrent: true