-
Notifications
You must be signed in to change notification settings - Fork 35
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
Implement equation_of_line
and setup CI testing
#9
Conversation
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.
thanks for add CI and implementing equation_of_line
. Looks good to me. I have some general questions but I am happy for the merge to go ahead.
push: | ||
branches: ["main"] | ||
|
||
# Triggers the workflow on pushes to pull requests |
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.
👍 thanks for the detailed comments. It's clear to see what each bit of the workflow yml
does
- name: Install Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' |
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.
what is the benefit of '3.x'
vs '3.12'
for example?
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.
It uses the latest available minor release of Python 3, rather than pinning to a particular version. (See https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#using-a-specific-python-version.)
Thanks for the review @TomMelt. |
Closes #1.
Closes #6.
This PR provides an implementation for the$y=mx+c$ formula.
equation_of_line
function using the standardIt also sets up a test suite for continuous integration testing.