Set up your GitHub Actions workflow with a specific version of gotestsum
.
The next example step will install gotestsum
0.4.1.
name: Example workflow
on: [push]
jobs:
example:
name: Example gotestsum interaction
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup gotestsum
uses: autero1/action-gotestsum@v2
with:
gotestsum_version: 0.4.1
- name: Interact with gotestsum
run: gotestsum --format short-verbose
Parameter | Description | Required |
---|---|---|
gotestsum_version |
gotestsum version to deploy |
true |
Parameter | Description |
---|---|
gotestsum_path |
Cached tool path of gotestsum |
This action has been tested on the following platforms:
- ubuntu-18.04
- windows-latest
- macos-latest
Contributions to this repository are very welcome! We follow a fairly standard pull request process for contributions, subject to the following guidelines:
- File a GitHub issue
- Fork the repository
- Update the documentation
- Update the tests
- Update the code
- Create a pull request
- (Merge and release)
The maintainers for this repo will review your code and provide feedback. If everything looks good, they will merge the code and release a new version, which you'll be able to find in the releases page.
The scripts and documentation in this project are released under the MIT license.
Gotestsum installer is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.