-
-
Notifications
You must be signed in to change notification settings - Fork 49
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
👷 setup GitHub CI #140
👷 setup GitHub CI #140
Conversation
9730231
to
c94be28
Compare
c94be28
to
1a1fa7e
Compare
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.
Awesome ❤️ I need to disable travis once this PR is merged 😄
@@ -0,0 +1,30 @@ | |||
name: Test and lint | |||
|
|||
on: [push] |
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.
not sure it will be triggered for external contributors 😞 I think you'll need to add the pull_request
hook.
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.
Indeed, good catch 👍 I'm going to change it with:
on: [push, pull_request]
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.
I just noticed that when it's your pull request, the process will run twice 😅 Maybe just using pull_request would work?
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.
or maybe something like that:
on:
pull_request:
push:
branches:
- master
I think it will trigger on all pull_request or when someone push on master.
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.
I confirm this one is working
Closes #139