-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: QA actions #17
feat: QA actions #17
Conversation
468c53d
to
abee794
Compare
abee794
to
c9539ca
Compare
Suggestion from canonical/starbase#272
test-python/action.yaml
Outdated
for UV_PYTHON in ${{ inputs.python-versions }}; do | ||
export UV_PYTHON | ||
echo "::group::Setup tests on Python ${UV_PYTHON}" | ||
make setup-tests | ||
echo "::endgroup::" | ||
echo "::group::Run tests on Python ${UV_PYTHON}" | ||
make "${{ inputs.target }}" | ||
echo "::endgroup::" | ||
done |
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 it mean, that now all python
versions will be folded and run in a single job ?
If it breaks e.g. in 3.10
, 3.12
will not run, am I correct?
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.
Correct. I can make it run all the Python versions regardless of failures if we want, though.
e97263e
to
004d207
Compare
004d207
to
cde2820
Compare
Superseded: #18 |
No description provided.