We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a3299f + ecf706a commit 8fb4830Copy full SHA for 8fb4830
Makefile
@@ -29,5 +29,5 @@ clean:
29
local-docker-test: ## Build and run unit tests in docker container like CI without building the container
30
docker run --rm=true -v `pwd`:$(MOUNT_DIR) $(BUILD_CONTAINER) bash -c 'cd $(MOUNT_DIR) && make ci'
31
32
-local-docker-build: ## Build the container image (which also runs tests)
+local-docker-build: ## Build the container image
33
docker build --no-cache -t $(ORG_AND_REPO) .
go.mod
@@ -1,8 +1,9 @@
1
module github.com/salesforce/ci-result-to-slack
2
3
-go 1.16
+go 1.17
4
5
require (
6
+ github.com/gorilla/websocket v1.4.2 // indirect
7
github.com/kelseyhightower/envconfig v1.4.0
8
github.com/pkg/errors v0.9.1 // indirect
9
github.com/slack-go/slack v0.9.4
0 commit comments