adds a new github workflow checking if the install works#76
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a new GitHub Actions workflow to automate the installation and import testing of the probly package.
- Adds a new workflow file to check installation and basic import validation.
- Uses uv for installation and running a quick import test.
Comments suppressed due to low confidence (1)
.github/workflows/install-import.yml:26
- [nitpick] The test import step only checks for a successful import without verifying any actual functionality of the package. Consider expanding this step in the future to include a meaningful test that exercises core functionalities of the probly package.
- name: Test import
pwhofman
approved these changes
Apr 15, 2025
elias0224
pushed a commit
to elias0224/probly
that referenced
this pull request
Oct 30, 2025
* adds a new github workflow checking if the install works * updated workflow
davyddzhalaiansamani
pushed a commit
to D4V1ND/probly
that referenced
this pull request
Dec 10, 2025
* adds a new github workflow checking if the install works * updated workflow
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
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 a new GitHub Actions workflow to automate the installation and import testing of the
problypackage. The workflow is triggered on pushes and pull requests to themainbranch.Key changes include:
.github/workflows/install-import.ymlto handle the installation and import testing of theproblypackage.ubuntu-latestas the runner and includes steps to checkout the code, installuvand Python 3.11, install the package usinguv, and run a test import to verify successful installation and import ofprobly.Changes in the future. We should actually import something from
problyand run something to see that it actually works.