Prepare for release v0.14.0 (#187) #265
Workflow file for this run
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
| name: test | |
| # Run this workflow on pushes and manually | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| get-go-version: | |
| name: "Determine Go toolchain version" | |
| runs-on: ubuntu-latest | |
| outputs: | |
| go-version: ${{ steps.get-go-version.outputs.go-version }} | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| - name: Determine Go version | |
| id: get-go-version | |
| run: | | |
| echo "Building with Go $(cat .go-version)" | |
| echo "::set-output name=go-version::$(cat .go-version)" | |
| run-go-checks: | |
| # using `main` as the ref will keep your workflow up-to-date | |
| uses: hashicorp/vault-workflows-common/.github/workflows/go-checks.yaml@main | |
| run-tests: | |
| # using `main` as the ref will keep your workflow up-to-date | |
| uses: hashicorp/vault-workflows-common/.github/workflows/tests.yaml@main |