Skip to content

add major version to module path, sync module name with repo's #331

add major version to module path, sync module name with repo's

add major version to module path, sync module name with repo's #331

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "*" ]
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Install dependencies
run: go get -d -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Install dependencies
run: go get -d -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...