grim/convey

Fix some minor linting issues

5 months ago, Elliott Sales de Andrade
62cc853bf396
Fix some minor linting issues

Testing Done:
Ran `golint`, saw fewer lints, and ran `go build .`

Reviewed at https://reviews.imfreedom.org/r/2869/
---
tasks:
import:
type: docker/import
files:
- .:.
clean:
type: convey/clean
files:
- convey-docs.zip
- site
# we explicitly call out jinja2==3.0.3 because 3.1.0 breaks mkdocs
# https://github.com/mkdocs/mkdocs/issues/2799
build:
type: docker/run
image: docker.io/python:3-alpine
workdir: ${CONVEY_WORKSPACE}
script:
- set -ex
- python3 -m pip install mkdocs jinja2
- mkdocs build
- apk add --no-cache zip
- mkdir t # we need to use a temporary directory as we may have a convey executable in the workspace
- mv site t/convey
- cd t
- zip -9r convey-docs.zip convey
export:
type: docker/export
files: t/convey-docs.zip:convey-docs.zip
plans:
default:
stages:
- tasks:
- clean
- tasks:
- import
- build
- export
clean:
stages:
- tasks:
- clean