summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yaml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 73ded34..c263e7a 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -3,7 +3,6 @@ name: Go Responsiveness
on: [pull_request, workflow_dispatch]
jobs:
build:
-
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -18,3 +17,12 @@ jobs:
- name: Test
run: make test
+
+ docker:
+ needs: [build]
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Build in container
+ run: docker build -t goresponsiveness .