Closed anipaul2 closed 1 year ago
Also this should be a one commit PR, and sign the commit.
Also this should be a one commit PR, and sign the commit.
I thought of signing when all the checks get successfully passed.
Rebase on the latest master and give a short commit message like Use black for `.py` files formatting
, the commit message you are using right now would be nice as a description instead.
Rebase on the latest master and give a short commit message like
Use black for `.py` files formatting
, the commit message you are using right now would be nice as a description instead.
There is a option which shows update branch and two list which are:-
Are you suggesting me to select the second option?
There is a option which shows update branch and two list which are
Neither of these. I mean rebasing master
on your branch locally and then force pushing on this feature branch.
For this you want to:
master
up to date: git fetch --all
.git rebase REMOTE_NAME/master
(for instance, I have my REMOTE_NAME as talaia
, which points to https://github.com/talaia-labs/rust-teos
, you want to pick the remote name you gave for that).master
.There is a option which shows update branch and two list which are
Neither of these. I mean rebasing
master
on your branch locally and then force pushing on this feature branch. For this you want to:
- Make sure you have the remote
master
up to date:git fetch --all
.- Rebase on the remote's master:
git rebase REMOTE_NAME/master
(for instance, I have my REMOTE_NAME astalaia
, which points tohttps://github.com/talaia-labs/rust-teos
, you want to pick the remote name you gave for that).- Fix any conflicts, I guess in this case there won't be any.
- Sign the commit you introduced by amending it.
- Force push, and you will be connected to
master
.
Done. Thanks for the point-to-point explanation.
Needs rebase
Fixes #230
Description This PR adds a new job in the CI that checks the formatting of Python files using Black. This ensures that all Python files follow the same code styling guidelines, making the codebase cleaner and easier to read.
Changes
.github/workflows/build.yaml
to include a new job for Black checks.Please let me know if any changes are required.