fail on error (#20)

ci-via-github-actions
这个提交包含在:
Casey Lee
2019-01-23 11:51:22 -08:00
提交者 GitHub
父节点 f98caa2656
当前提交 320e9b6057
共有 1274 个文件被更改,包括 398630 次插入9 次删除

查看文件

@@ -1,6 +1,12 @@
FROM golangci/golangci-lint:v1.12.5
LABEL "com.github.actions.name"="Check"
LABEL "com.github.actions.description"="Run static analysis and unit tests"
LABEL "com.github.actions.icon"="check-circle"
LABEL "com.github.actions.color"="green"
COPY "entrypoint.sh" "/entrypoint.sh"
RUN chmod +x /entrypoint.sh
ENV GOFLAGS -mod=vendor
ENTRYPOINT ["/entrypoint.sh"]

查看文件

@@ -1,4 +1,4 @@
#!/bin/sh
set -e
golangci-lint run
go test -cover ./...