You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see in your comment above that more cleaning could be done, that could be a great idea, feel free to tell us more about that!
Sure. Some of this is just matters of preference, and obviously whatever works best for you is what you should do, but I've found it easier to maintain GitHub Actions workflows by separating them out into multiple workflows rather than having them all exist in one, like you normally would do for Travis CI, GitLab pipelines, etc. So for example, the
Sure. Some of this is just matters of preference, and obviously whatever works best for you is what you should do, but I've found it easier to maintain GitHub Actions workflows by separating them out into multiple workflows rather than having them all exist in one, like you normally would do for Travis CI, GitLab pipelines, etc. So for example, the
jupytext/.github/workflows/continuous-integration.yml
Lines 58 to 85 in e097422
job doesn't need to live in your CI workflow, but could exist as a separate
codeql-analysis.yml
workflow.Also, unless I'm mistaken about its purpose, the
jupytext/.github/workflows/continuous-integration.yml
Lines 11 to 19 in e097422
can be replaced with GitHub Actions concurrency control (c.f. https://docs.github.com/en/actions/using-jobs/using-concurrency). i.e. something like
Originally posted by @matthewfeickert in #1035 (comment)
The text was updated successfully, but these errors were encountered: