-
Notifications
You must be signed in to change notification settings - Fork 18
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
Update GH actions for master and prs #365
Conversation
a099909
to
b1b342b
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 🚀
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.
thank you!!
strategy: | ||
fail-fast: true | ||
matrix: | ||
feature: [libp2p, waku] |
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.
It seems the fail-fast: true
doesn't work because we have the continue-on-error: true
for the cargo check
step below, probably?
For example, the cargo check
failed in the PR: https://github.com/logos-co/nomos-node/actions/runs/6046982217/job/16409567703?pr=316, but it show me the green light.
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.
fail-fast: true
is set for master branch. PRs has a separate file prs.yml
and it's set to fail-fast: false
. But I'll update the cargo check step to continue-on-error: false
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.
Ah, i left this comment at the wrong position :)) but it seems the pr.yml
also has the same settings.
Updated and re added github actions for PRs.