Skip to content

Bump bobg/modver from 2.8.1 to 2.9.0 #291

Bump bobg/modver from 2.8.1 to 2.9.0

Bump bobg/modver from 2.8.1 to 2.9.0 #291

Workflow file for this run

name: Go
on:
push:
pull_request:
schedule:
- cron: '4 15 * * SUN'
jobs:
build:
strategy:
matrix:
go-version: [1.21.x, 1.22.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
name: "Build ${{ matrix.go-version }} test on ${{ matrix.platform }}"
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
submodules: true
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -v ./...