ci: Add tests and benchmarks to CI #7
Workflow file for this run
This file contains 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
name: Release | |
on: | |
push: | |
branches: | |
- github-actions/main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
with: | |
release-type: go | |
# Required for the release PR to have its own status checks | |
token: ${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }} | |
target-branch: ${{ github.ref_name }} |