-
Notifications
You must be signed in to change notification settings - Fork 22
Conversation
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} |
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.
Does this work to set up both version of Python?
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.
Yes, it looks at the "strategy:matrix:python-version" field under Build and then creates separate workflows for each one.
uses: codecov/codecov-action@v1 | ||
with: | ||
file: coverage.xml # optional | ||
fail_ci_if_error: true # optional (default = 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.
Will this send a Slack notification if any tests fail?
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 had actually forgotten to put the slack config in so thanks for catching that.
This will notify us in slack anytime the master build fails (due to failed tests, failed coverage upload, or anything else)
No description provided.