Skip to content

Update robherley/go-test-action action to v0.6.0 #22

Update robherley/go-test-action action to v0.6.0

Update robherley/go-test-action action to v0.6.0 #22

Workflow file for this run

name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
goversion:
- '1.17'
- '1.18'
- '1.19'
- '1.20'
- '1.21'
- '1.22'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.goversion }}
- name: Build
run: go build -v ./...
- name: Test
uses: robherley/[email protected]