Skip to content
This repository was archived by the owner on Dec 21, 2025. It is now read-only.

Replace BESTSELLER/go-version with Hashicorp/go-version #93

Replace BESTSELLER/go-version with Hashicorp/go-version

Replace BESTSELLER/go-version with Hashicorp/go-version #93

Workflow file for this run

name: Go Test
on:
push:
branches:
- "*"
pull_request:
types: [opened, reopened, synchronize]
jobs:
Build-and-Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
- name: Build
run: go build
- name: Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: go test -v ./...