summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2023-05-19 13:49:57 -0400
committerWill Hawkins <[email protected]>2023-05-19 13:49:57 -0400
commit88436911ab816696419f336832a575283cf9f42f (patch)
tree0c331781e9c82fdabce8b71ad5bf96b7e530e870
parentdf2d48e0a00edfac3dc1b92cc211eacd9b76bfbd (diff)
Adding `go test` support to pull requests
-rw-r--r--.github/workflows.yaml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows.yaml b/.github/workflows.yaml
new file mode 100644
index 0000000..ca57a54
--- /dev/null
+++ b/.github/workflows.yaml
@@ -0,0 +1,24 @@
+name: Go Responsiveness
+
+on:
+ pull_request:
+ branches: main
+ types: edited
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Set up Go
+ uses: actions/setup-go@v4
+ with:
+ go-version: '1.20'
+
+ - name: Build
+ run: make build
+
+ - name: Test
+ run: make test \ No newline at end of file