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.
1 parent cdeaac6 commit 6ee3219Copy full SHA for 6ee3219
.gitignore
@@ -1,2 +1,4 @@
1
.idea/
2
dist
3
+cover.out
4
+.semrel/
Jenkinsfile
@@ -1,4 +1,6 @@
-@Library('faceit-shared-libs') _
+@Library('faceit-shared-libs@semantic-release-official') _
goCommandLinePipeline(
- projectName : 'commit-analyzer-regex'
+ projectName : 'commit-analyzer-regex',
+ slackBuildLogChannel: '#nowhere',
5
+ semanticReleaseToolName: 'semantic-release-official',
6
)
Makefile
@@ -0,0 +1,7 @@
+.PHONY: test
+test: ## Run Tests into the packages
+ @echo "Running tests"
+ go test -v -covermode=atomic -coverpkg=./... -coverprofile=cover.out ./...
+
+.PHONY: integration
7
+integration: test
0 commit comments