mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-18 15:13:32 -05:00
Bumps [github.com/go-chi/chi/v5](https://github.com/go-chi/chi) from 5.0.12 to 5.1.0. - [Release notes](https://github.com/go-chi/chi/releases) - [Changelog](https://github.com/go-chi/chi/blob/master/CHANGELOG.md) - [Commits](https://github.com/go-chi/chi/compare/v5.0.12...v5.1.0) --- updated-dependencies: - dependency-name: github.com/go-chi/chi/v5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1.2 KiB
1.2 KiB
Contributing
Prerequisites
-
Download the sources and switch the working directory:
go get -u -d github.com/go-chi/chi cd $GOPATH/src/github.com/go-chi/chi
Submitting a Pull Request
A typical workflow is:
- Fork the repository.
- Create a topic branch.
- Add tests for your change.
- Run
go test. If your tests pass, return to the step 3. - Implement the change and ensure the steps from the previous step pass.
- Run
goimports -w ., to ensure the new code conforms to Go formatting guideline. - Add, commit and push your changes.
- Submit a pull request.