-
Notifications
You must be signed in to change notification settings - Fork 7
Add new annotations and add a GitHub Action for testing #36
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
Open
gfenoy
wants to merge
22
commits into
common-workflow-lab:master
Choose a base branch
from
gfenoy:develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add security and quality monitoring Add Dependabot for dependency management
Feature/run tests
Fix issue with validation job from the GitHub Action Tests
Fix coverage usage
Fix issue with coverage in pyproject.toml
Remove warnings from the tests
Do not use the deprecated pkg_resources Python module
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces major enhancements to the CI/CD pipeline, dependency management, and the
ipython2cwlPython package, focusing on improved testing, security, code quality, and extensibility for Common Workflow Language (CWL) features. Key changes include new GitHub Actions workflows for testing and quality assurance, a comprehensive CI/CD configuration file, expanded dependency update rules, and significant additions to theiotypes.pymodule to support advanced CWL requirements, metadata, and namespaces.CI/CD and Workflow Improvements
.ci-config.tomlto centralize configuration of project metadata, supported Python versions, test directories, code quality, security tools, Docker settings, and release automation, improving maintainability and reproducibility.test.ymlfor multi-version testing (including Docker-dependent tests and CWL validation), andquality.ymlfor security scanning (Bandit, Safety), code analysis (CodeQL), code style (Pylint, MyPy, Radon), and documentation coverage, ensuring robust CI/CD and code health. [1] [2]Dependency Management
.github/dependabot.ymlto automate updates for GitHub Actions, Python, and Docker dependencies, with custom scheduling, labeling, commit message conventions, and rules to ignore major version updates for stability.Core Package Enhancements (CWL Features)
ipython2cwl/iotypes.py:CWLFloatInputfor float inputs andCWLDirectoryPathOutputfor directory outputs, increasing flexibility in workflow definitions. [1] [2] [3]CWLRequirement(for workflow requirements),CWLMetadata(for schema.org metadata), andCWLNamespaces(for namespace specification), enabling richer and more interoperable CWL tool generation directly from notebooks.Miscellaneous
ipython2cwl/__init__.pyto reflect the new package version0.0.4.These changes collectively modernize the development workflow, improve code quality and security, and extend the functionality of
ipython2cwlfor advanced CWL use cases.