Add CI workflow, update documentation, and convert examples to Go#1
Merged
francescobianco merged 5 commits intomainfrom Mar 18, 2026
Merged
Add CI workflow, update documentation, and convert examples to Go#1francescobianco merged 5 commits intomainfrom
francescobianco merged 5 commits intomainfrom
Conversation
…e into two examples, add testing section
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 the initial setup and documentation for the Openapi Go SDK, establishing the project's structure, licensing, contribution guidelines, and CI/CD workflow. It also adds example code and unit tests for core functionality. The most important changes are summarized below.
Project setup and documentation:
README.mdoutlining project overview, features, usage examples, installation instructions, testing, contribution guidelines, authors, partners, and licensing. [1] [2]LICENSEfile with the MIT license, clarifying usage and distribution rights.docs/contributing.mdanddocs/code-of-conduct.mdto guide contributors and maintain a welcoming environment. [1] [2]Build and release tooling:
Makefilewith commands for testing, vetting, development pushes, and tagged releases, including GitHub release automation..github/workflows/go.ymlfor GitHub Actions CI, running build and test jobs on pushes and pull requests.Examples and testing:
examples/token_generation/token_generation.goandexamples/api_calls/api_calls.go. [1] [2]pkg/client/client_test.go, covering initialization and request handling with and without query parameters.Repository configuration:
go.modto set the module path togithub.com/openapi/openapi-go-sdk..convcommitfile to standardize commit messages using theconvcommitCLI tool.