7
.github/workflows/integration/Dockerfile
vendored
Normal file
7
.github/workflows/integration/Dockerfile
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM golangci/golangci-lint:v1.23.6
|
||||
|
||||
COPY "entrypoint.sh" "/entrypoint.sh"
|
||||
RUN chmod +x /entrypoint.sh
|
||||
|
||||
ENV GOFLAGS -mod=vendor
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
8
.github/workflows/integration/action.yml
vendored
Normal file
8
.github/workflows/integration/action.yml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
name: Check
|
||||
description: Run integration tests
|
||||
branding:
|
||||
icon: check-circle
|
||||
color: green
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
3
.github/workflows/integration/entrypoint.sh
vendored
Normal file
3
.github/workflows/integration/entrypoint.sh
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
go test -cover ./runner
|
Reference in New Issue
Block a user