Skip to content

Bump actions/setup-go from 4 to 5 (#35) #10

Bump actions/setup-go from 4 to 5 (#35)

Bump actions/setup-go from 4 to 5 (#35) #10

Workflow file for this run

name: tests
on:
push:
jobs:
tests-off:
name: ${{ matrix.os }} - Go v${{ matrix.go-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version:
- "1.21.x"
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: |
go mod tidy -v
go test -cover ./...