-
Notifications
You must be signed in to change notification settings - Fork 140
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
Fix ci #226
Fix ci #226
Changes from 2 commits
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 | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,8 @@ | ||||||||||||||||
on: push | ||||||||||||||||
on: | ||||||||||||||||
push: | ||||||||||||||||
pull_request: | ||||||||||||||||
branches: [master] | ||||||||||||||||
types: [opened, synchronize, reopened] | ||||||||||||||||
|
||||||||||||||||
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. It seems to me we can just run CI on any PR
Suggested change
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. I think the CI badge is not working properly after removing 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. @gabrielperales No problem. I would fix them |
||||||||||||||||
jobs: | ||||||||||||||||
test: | ||||||||||||||||
|
@@ -10,7 +14,7 @@ jobs: | |||||||||||||||
- otp: 25.1 | ||||||||||||||||
elixir: 1.15.4 | ||||||||||||||||
- otp: 21.3 | ||||||||||||||||
Nitrino marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||
elixir: 1.7.4 | ||||||||||||||||
elixir: 1.11.4 | ||||||||||||||||
|
||||||||||||||||
Nitrino marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||
steps: | ||||||||||||||||
- uses: actions/checkout@v3 | ||||||||||||||||
|
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.
Note that removing
push
here made it so that now it doens't run CI onmaster
branch, only pull requests.