How to contribute
- Fork the project at GitHub.
- Use
git clone
to fetch a local copy to your computer.
- Use
git remote add
to set two remote targets, one for the original upstream repo and one for our fork.
- Create a new branch
git checkout -b
- Write the code.
- Install act and run the tests:
act -j test
and the linter act -j lint
.
- If they pass, then
git commit
and git push
to your fork remote against your branch.
- Now you can create a pull-request from your fork remote to the original upstream project against the
master
branch.