resolve issues with release action

这个提交包含在:
Casey Lee
2019-02-07 09:50:30 -08:00
父节点 7b012832b4
当前提交 de62a2eece
共有 4 个文件被更改,包括 29 次插入1 次删除

12
.github/actions/integration/Dockerfile vendored 普通文件
查看文件

@@ -0,0 +1,12 @@
FROM golangci/golangci-lint:v1.12.5
LABEL "com.github.actions.name"="Check"
LABEL "com.github.actions.description"="Run integration 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"]

查看文件

@@ -0,0 +1,3 @@
#!/bin/sh
set -e
go test -cover ./actions