summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2024-01-09 18:27:48 -0500
committerGitHub <[email protected]>2024-01-09 18:27:48 -0500
commit65c625a6258e0c354c26babba51455985c541261 (patch)
tree7fc706f16743ddb8d3bd4147f522e30304a46064
parent2108f83d47549f453dd3b29a0d366787f1ab689b (diff)
parent38b837f4fcb8c408909386078c4764f7ee8df4ed (diff)
Merge pull request #69 from network-quality/actions_workflow_docker
[Feature] Add building of Docker image to CI/CD
-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 .