-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#925: Changes to not run Github workflow actions for docs related PRs #928
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,18 @@ name: dice-test-suite | |
on: | ||
push: | ||
branches: [master] | ||
paths: | ||
- "**/*.go" | ||
- "go.mod" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we have it other way around like a blacklist of paths instead of whitelist? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hey @lucifercr07, I have switched to having the paths blacklisted instead of the other way round. |
||
- "go.sum" | ||
- "Makefile" | ||
pull_request: | ||
branches: [master] | ||
paths: | ||
- "**/*.go" | ||
- "go.mod" | ||
- "go.sum" | ||
- "Makefile" | ||
|
||
jobs: | ||
build: | ||
|
@@ -22,4 +32,4 @@ jobs: | |
- name: Run Unit tests | ||
run: make unittest | ||
- name: Run Integration tests | ||
run: make test | ||
run: make test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will also consider
main.go
in current dir?